-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
45 lines (41 loc) · 1.41 KB
/
phpunit.xml
File metadata and controls
45 lines (41 loc) · 1.41 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
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/13.0/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheDirectory="tests/PHPUnit/build/cache"
colors="true"
defaultTestSuite="All-Test"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
stopOnError="true"
stopOnFailure="true"
testdox="false"
>
<php>
<env name="APP_ENV" value="testing" />
<ini name="date.timezone" value="America/Bogota" />
<ini name="memory_limit" value="2048M" />
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="1"/>
</php>
<source>
<include>
<directory>src/LionBundle</directory>
</include>
<exclude>
<file>src/LionBundle/Helpers/Bundle/constants.php</file>
<directory>src/LionBundle/Commands/Npm</directory>
<directory>src/LionBundle/Traits</directory>
</exclude>
</source>
<testsuites>
<testsuite name="All-Test">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>