-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 847 Bytes
/
phpunit.xml
File metadata and controls
27 lines (27 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<testsuite name="Feature">
<directory>tests/Docker</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./src/Docker/Console</directory>
<file>./src/Docker/Kernel/Support/helpers.php</file>
<file>./src/Docker/Kernel/Facade.php</file>
<file>./src/Docker/Kernel/ServiceProvider.php</file>
</exclude>
</whitelist>
</filter>
<groups>
<exclude>
<group>no-test</group>
</exclude>
</groups>
<php>
<env name="APP_ENV" value="testing"/>
</php>
</phpunit>