-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (26 loc) · 906 Bytes
/
Copy pathphpunit.xml
File metadata and controls
26 lines (26 loc) · 906 Bytes
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
<?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"
colors="true"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="SignalWire SDK Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<!-- The `live` group (tests/Live) hits the REAL platform (plan 6.5); it is
opt-in and excluded from the default run so a plain phpunit run never
needs creds. The live-smoke CI lane runs it explicitly by group. -->
<groups>
<exclude>
<group>live</group>
</exclude>
</groups>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>