mirror of
https://github.com/code-rhapsodie/dataflow-bundle.git
synced 2026-03-24 06:42:23 +01:00
* Added Symfony 7 support * Removed Symfony 6 compatibility * Removed Symfony 5 compatibility * Removed Symfony 4 compatibility * Removed Symfony 3 compatibility * Changed README.md * Added CI --------- Co-authored-by: Jérémy J <jeremy@code-rhapsodie.fr>
22 lines
799 B
XML
22 lines
799 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="Tests/bootstrap.php" colors="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
|
|
<php>
|
|
<ini name="error_reporting" value="-1"/>
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Dataflow tests suite">
|
|
<directory suffix="Test.php">./Tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<source>
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory>Tests/</directory>
|
|
<directory>vendor/</directory>
|
|
</exclude>
|
|
</source>
|
|
</phpunit>
|