update phpunit.xml.dist file

This commit is contained in:
abdounikarim 2019-11-25 20:02:34 +01:00 committed by Ryan Weaver
parent d462ba15b9
commit a960290f36
2 changed files with 19 additions and 16 deletions

View file

@ -3,10 +3,12 @@ sudo: false
cache: cache:
directories: directories:
- $HOME/.composer/cache/files - $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
env: env:
global: global:
- PHPUNIT_FLAGS="-v" - PHPUNIT_FLAGS="-v"
- SYMFONY_PHPUNIT_DIR="$HOME/symfony-bridge/.phpunit"
matrix: matrix:
fast_finish: true fast_finish: true

View file

@ -1,30 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <!-- http://phpunit.de/manual/4.1/en/appendixes.configuration.html -->
backupStaticAttributes="false" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true" colors="true"
convertErrorsToExceptions="true" failOnRisky="true"
convertNoticesToExceptions="true" failOnWarning="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./vendor/autoload.php"
> >
<php>
<server name="SYMFONY_PHPUNIT_VERSION" value="7.5" />
</php>
<testsuites> <testsuites>
<testsuite name="Markdown Test Suite"> <testsuite name="Markdown Test Suite">
<directory>./Tests/</directory> <directory>tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<filter> <filter>
<whitelist> <whitelist processUncoveredFilesFromWhitelist="true">
<directory>./</directory> <directory>.</directory>
<exclude> <exclude>
<directory>./Resources</directory> <directory>tests</directory>
<directory>./Tests</directory> <directory>vendor</directory>
<directory>./vendor</directory>
</exclude> </exclude>
</whitelist> </whitelist>
</filter> </filter>
</phpunit> </phpunit>