-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
40 lines (35 loc) · 1.32 KB
/
Copy pathphpunit.xml
File metadata and controls
40 lines (35 loc) · 1.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
<?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"
stopOnFailure="false"
defaultTestSuite="default">
<testsuites>
<!-- Runs on any machine (composer test). Unsupported extensions self-skip. -->
<testsuite name="default">
<directory>tests/Base</directory>
<directory>tests/Working</directory>
</testsuite>
<testsuite name="base">
<directory>tests/Base</directory>
</testsuite>
<testsuite name="working">
<directory>tests/Working</directory>
</testsuite>
<!--
Heavy, environment-specific tests (leak / timing / nested / workload,
with swoole and fpm sub-groups). Excluded from the default run by NOT
being part of the "default" suite; executed inside containers via
tests/run-container.sh or the composer test-container script.
-->
<testsuite name="container">
<directory>tests/Container</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>