-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
67 lines (67 loc) · 2.32 KB
/
Copy pathphpunit.xml
File metadata and controls
67 lines (67 loc) · 2.32 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
failOnDeprecation="true"
failOnNotice="true"
failOnPhpunitDeprecation="true"
failOnPhpunitWarning="true"
failOnWarning="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnTestsThatTriggerWarnings="true"
>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="display_errors" value="1"/>
</php>
<source
restrictNotices="true"
restrictWarnings="true"
ignoreIndirectDeprecations="true"
>
<include>
<directory>packages</directory>
</include>
</source>
<testsuites>
<testsuite name="geojson-reproject">
<directory>packages/geojson-reproject/test</directory>
</testsuite>
<testsuite name="pulp">
<directory>packages/pulp/test</directory>
</testsuite>
<testsuite name="pulp-cache">
<directory>packages/pulp-cache/test</directory>
</testsuite>
<testsuite name="pulp-concert">
<directory>packages/pulp-concert/test</directory>
</testsuite>
<testsuite name="pulp-geocsv">
<directory>packages/pulp-geocsv/test</directory>
</testsuite>
<testsuite name="pulp-geojson">
<directory>packages/pulp-geojson/test</directory>
</testsuite>
<testsuite name="pulp-gtfs">
<directory>packages/pulp-gtfs/test</directory>
</testsuite>
<testsuite name="pulp-json">
<directory>packages/pulp-json/test</directory>
</testsuite>
<testsuite name="pulp-soap">
<directory>packages/pulp-soap/test</directory>
</testsuite>
<testsuite name="pulp-tic">
<directory>packages/pulp-tic/test</directory>
</testsuite>
<testsuite name="pulp-xml">
<directory>packages/pulp-xml/test</directory>
</testsuite>
<testsuite name="pulp-zip">
<directory>packages/pulp-zip/test</directory>
</testsuite>
</testsuites>
</phpunit>