-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (36 loc) · 1.34 KB
/
Copy pathphpunit.xml
File metadata and controls
37 lines (36 loc) · 1.34 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
<?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"
defaultTestSuite="Unit">
<!--
The default suite is deterministic and makes NO network requests.
S250: the Network suite talks to httpbin.org, a third-party service that
intermittently answers 5xx or times out. It turned master red on its own
schedule, so it is deliberately NOT part of the default run. It is not
deleted (it still covers the live cURL round trip); run it on demand by
selecting the Network testsuite on the phpunit command line. See the
header of tests/Network/HttpClientNetworkTest.php.
-->
<testsuites>
<testsuite name="Unit">
<directory>tests</directory>
<exclude>tests/Network</exclude>
</testsuite>
<testsuite name="Network">
<directory>tests/Network</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
</source>
<coverage>
<report>
<cobertura outputFile="coverage.xml"/>
</report>
</coverage>
</phpunit>