1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 12:24:40 +01:00
parallel/phpunit.xml.dist

34 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-07-10 22:15:42 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
2016-08-18 18:04:48 +02:00
<testsuite name="Amp Concurrent">
<directory>test</directory>
2015-07-10 22:15:42 +02:00
</testsuite>
</testsuites>
<filter>
<whitelist>
2016-08-19 00:36:58 +02:00
<directory suffix=".php">lib</directory>
<exclude>
<!-- Only executed in child contexts -->
<file>lib/Context/Internal/process-runner.php</file>
<file>lib/Worker/Internal/worker-process.php</file>
</exclude>
2015-07-10 22:15:42 +02:00
</whitelist>
</filter>
<logging>
2019-08-27 19:17:41 +02:00
<log type="coverage-html" target="build/coverage"/>
2015-07-10 22:15:42 +02:00
</logging>
</phpunit>