-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
33 lines (33 loc) · 1.29 KB
/
phpunit.xml
File metadata and controls
33 lines (33 loc) · 1.29 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
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" backupGlobals="false" failOnRisky="false" failOnWarning="false" bootstrap="tests/bootstrap.php" colors="true" cacheDirectory=".phpunit.cache" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnPhpunitDeprecations="true" displayDetailsOnTestsThatTriggerDeprecations="true">
<testsuites>
<testsuite name="integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
<testsuite name="unit">
<directory suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="reports"/>
<text outputFile="reports/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="reports/xml"/>
</report>
</coverage>
<logging>
<junit outputFile="reports/junit.xml"/>
</logging>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
<extensions>
<bootstrap class="DG\BypassFinals\PHPUnitExtension"/>
</extensions>
<php>
<env name="FIREWALL_BYPASS_CLI" value="1" />
<env name="FIREWALL_TEST" value="1" />
</php>
</phpunit>