-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
25 lines (25 loc) · 981 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
backupStaticProperties="false"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerNotices="true">
<testsuites>
<testsuite name="Hypervel Packages Test Suite">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/Prompts</exclude>
</testsuite>
</testsuites>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="on"/>
<ini name="display_startup_errors" value="on"/>
<ini name="memory_limit" value="1024M"/>
<env name="RUN_BLOCKING_TESTS" value="false" force="true"/>
</php>
</phpunit>