-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
26 lines (26 loc) · 894 Bytes
/
phpunit.xml
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"?>
<!--
Copyright (C) Damien Dart, <[email protected]>.
This file is distributed under the MIT licence. For more information,
please refer to the accompanying "LICENCE" file.
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoverageMetadata="true"
bootstrap="protected/vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache"
requireCoverageMetadata="true"
>
<php>
<env name="END_TO_END_TESTS_BASE_URI" value="https://www.robotinaponcho.test/"/>
<env name="END_TO_END_TESTS_VERIFY_SSL" value="false"/>
</php>
<testsuites>
<testsuite name="End-to-End">
<directory suffix="Test.php">tests/EndToEnd</directory>
</testsuite>
</testsuites>
</phpunit>