Oliver Davies
ea2c228806
Prevents collisions with other running projects, such as my personal website that uses Sculpin and also port 8000 by default.
15 lines
519 B
XML
15 lines
519 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="web/core/tests/bootstrap.php" colors="true">
|
|
<php>
|
|
<env name="SIMPLETEST_BASE_URL" value="http://localhost:9000"/>
|
|
<env name="SIMPLETEST_DB" value="sqlite://localhost//dev/shm/test.sqlite"/>
|
|
<ini name="error_reporting" value="32767"/>
|
|
<ini name="memory_limit" value="-1"/>
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Example tests">
|
|
<directory suffix="Test.php">./web/modules/**</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|