-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
34 lines (30 loc) · 1.22 KB
/
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
33
34
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "true"
bootstrap = "vendor/autoload_runtime.php"
verbose = "true"
timeoutForLargeTests = "10"
>
<testsuites>
<testsuite name="All">
<directory>vendor/splash/phpcore/Tests/*</directory>
<directory>vendor/splash/php-bundle/phpunit/*</directory>
<!--<directory>tests/Controller</directory>-->
</testsuite>
</testsuites>
<php>
<server name="KERNEL_CLASS" value="Splash\Toolkit\Kernel" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
<server name="SERVER_NAME" value="http://localhost:8000"/>
<const name="SPLASH_DEBUG" value="true" />
<server name="SPLASH_TRAVIS" value="true" />
</php>
</phpunit>