Files
dataflow-bundle/phpunit.xml
Arnaud Lafon 567a70aa84 Travis and coveralls setup (#1)
* 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
2019-10-10 14:37:16 +02:00

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>