-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathphpunit.xml
File metadata and controls
32 lines (32 loc) · 1.02 KB
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
28
29
30
31
32
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.3/phpunit.xsd"
bootstrap="./tests/phpunit_autoload.php"
colors="true"
stopOnError="true"
stopOnFailure="false"
cacheDirectory="tests/_output/.phpunit.cache">
<testsuites>
<testsuite name="default">
<directory>./tests/</directory>
</testsuite>
<testsuite name="apps">
<directory>./apps/*/tests/</directory>
</testsuite>
</testsuites>
<logging />
<php>
<ini name="error_reporting" value="-1" />
<env name="PHPUNIT_TEST" value="true" force="true" />
</php>
<source>
<include>
<directory suffix=".php">./apps</directory>
</include>
<exclude>
<directory suffix="ide-stubs.php">./apps</directory>
<directory>./apps/*/tests</directory>
<directory>./apps/*/vendor</directory>
</exclude>
</source>
</phpunit>