mirror of
https://github.com/code-rhapsodie/dataflow-bundle.git
synced 2026-03-24 14:52:21 +01:00
* Initial Travis setup * Downgraded to phpunit 7 because phpunit 8 does not support php 7.1 * Fixed multiple constraint error message issue * phpcsfixer required in dev & first fix run * Add coveralls support
33 lines
889 B
XML
33 lines
889 B
XML
<?xml version = '1.0' encoding = 'UTF-8'?>
|
|
|
|
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="Tests/bootstrap.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
colors="false"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Dataflow tests suite">
|
|
<directory suffix="Test.php">./Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/</directory>
|
|
<exclude>
|
|
<directory>Tests/</directory>
|
|
<directory>vendor/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|