-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit-integration.xml
More file actions
25 lines (24 loc) · 1.12 KB
/
Copy pathphpunit-integration.xml
File metadata and controls
25 lines (24 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
The integration suite. Separate from phpunit.xml on purpose: these tests need the disposable Docker stack, and
running them by accident as part of the unit suite would turn a missing Docker into a wall of failures.
Do not run this by hand. tests/docker/run.sh is what brings the stack up, generates tests/config.php, runs this
suite against it, and tears the stack down again.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="tests/bootstrap-e2e.php"
cacheDirectory=".phpunit.cache/integration"
colors="true"
failOnRisky="true"
failOnWarning="true"
beStrictAboutOutputDuringTests="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true">
<testsuites>
<testsuite name="integration">
<directory>tests/Integration/Tests</directory>
</testsuite>
</testsuites>
</phpunit>