-
Notifications
You must be signed in to change notification settings - Fork 451
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (28 loc) · 1 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
28 lines (28 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="test/Bootstrap.php"
colors="true"
displayDetailsOnTestsThatTriggerWarnings="true"
failOnWarning="true"
>
<php>
<ini name="error_reporting" value="-1" />
<!--
Since git 2.47, commits spawn a detached auto maintenance process that keeps writing
.git/objects/maintenance.lock after the commit returns, racing the E2E cleanup of the test repos.
-->
<env name="GIT_CONFIG_COUNT" value="1" />
<env name="GIT_CONFIG_KEY_0" value="maintenance.auto" />
<env name="GIT_CONFIG_VALUE_0" value="false" />
</php>
<testsuites>
<testsuite name="Unit">
<directory>test/Unit</directory>
</testsuite>
<testsuite name="E2E">
<directory>test/E2E</directory>
</testsuite>
</testsuites>
</phpunit>