forked from brefphp/bref
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
23 lines (23 loc) · 850 Bytes
/
phpunit.xml
File metadata and controls
23 lines (23 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" bootstrap="./vendor/autoload.php" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="small">
<directory>./tests/</directory>
<exclude>./tests/Sam</exclude>
<exclude>./tests/Fixtures</exclude>
<exclude>./tests/HttpRequestProxyTest.php</exclude>
<exclude>./tests/Event/Http/CommonHttpTest.php</exclude>
</testsuite>
<testsuite name="runtimes">
<directory>./tests/Sam</directory>
</testsuite>
</testsuites>
<php>
<env name="AWS_REGION" value="eu-west-1" force="true"/>
</php>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>