forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
32 lines (28 loc) · 918 Bytes
/
phpunit.xml.dist
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
colors="true"
bootstrap="tests/phpunit/bootstrap.php"
stopOnFailure="true"
stopOnError="true"
verbose="true">
<testsuites>
<testsuite name="BLT Test Suite">
<directory>tests/phpunit</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>requires-vm</group>
</exclude>
</groups>
<php>
<!-- These variables may alternatively be set as environment variables. -->
<!-- E.g., `BLT_PRINT_COMMAND_OUTPUT=1 ./vendor/bin/phpunit` -->
<env name="BLT_RECREATE_SANDBOX_MASTER" value="1"/>
<env name="BLT_PRINT_COMMAND_OUTPUT" value="1"/>
<env name="BLT_REPLACE_SANDBOX_INSTANCE" value="1"/>
<env name="BLT_ENV" value="ci"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
</phpunit>