-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
32 lines (32 loc) · 1.8 KB
/
phpunit.xml.dist
File metadata and controls
32 lines (32 loc) · 1.8 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" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true" cacheDirectory=".phpunit.cache" executionOrder="depends,defects" requireCoverageMetadata="false" beStrictAboutCoverageMetadata="false" beStrictAboutOutputDuringTests="true" failOnRisky="true" failOnWarning="true" displayDetailsOnIncompleteTests="true" displayDetailsOnSkippedTests="true" displayDetailsOnTestsThatTriggerDeprecations="true" displayDetailsOnTestsThatTriggerErrors="true" displayDetailsOnTestsThatTriggerNotices="true" displayDetailsOnTestsThatTriggerWarnings="true">
<testsuites>
<testsuite name="Univeros Test Suite">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/Http/Middleware/AbstractMiddlewareTest.php</exclude>
<exclude>./tests/Sanitation/Filter/AbstractFilterTest.php</exclude>
<exclude>./tests/Structure/AbstractCollectionTest.php</exclude>
<exclude>./tests/Validation/Rule/AbstractRuleTest.php</exclude>
<exclude>./tests/TestReporter/Fixtures/ExampleHttpCacheTest.php</exclude>
<exclude>./tests/TestReporter/Fixtures/ExampleNoCoversTest.php</exclude>
<exclude>./tests/TestReporter/Fixtures/LegacyCoversAnnotationTest.php</exclude>
</testsuite>
</testsuites>
<source restrictNotices="true" restrictWarnings="true" ignoreIndirectDeprecations="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile="coverage.xml"/>
</report>
</coverage>
<php>
<ini name="date.timezone" value="UTC"/>
<!--
<env name="REDIS_HOST" value="127.0.0.1"/>
<env name="REDIS_PORT" value="6379"/>
-->
</php>
</phpunit>