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
21 lines (21 loc) · 730 Bytes
/
phpunit.xml
File metadata and controls
21 lines (21 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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/9.3/phpunit.xsd" bootstrap="./vendor/autoload.php">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="small">
<directory>./tests/</directory>
<exclude>./tests/Sam</exclude>
<exclude>./tests/Fixtures</exclude>
</testsuite>
<testsuite name="runtimes">
<directory>./tests/Sam</directory>
</testsuite>
</testsuites>
<php>
<env name="AWS_REGION" value="eu-west-1" force="true" />
</php>
</phpunit>