1
0
mirror of https://github.com/mrclay/minify.git synced 2025-08-01 20:00:42 +02:00

Update phpunit.xml deprecated options, exclude vendor from code-coverage

This commit is contained in:
Elan Ruusamäe
2020-03-24 10:26:42 +02:00
committed by Elan Ruusamäe
parent 20f336f598
commit eb5197f9d4

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- http://phpunit.de/manual/current/en/appendixes.configuration.html --> <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit <phpunit
backupGlobals="false" backupGlobals="false"
backupStaticAttributes="false" backupStaticAttributes="false"
@@ -10,7 +10,6 @@
convertWarningsToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" processIsolation="false"
stopOnFailure="false" stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"> bootstrap="vendor/autoload.php">
<testsuites> <testsuites>
@@ -32,6 +31,7 @@
<directory>.</directory> <directory>.</directory>
<exclude> <exclude>
<directory>tests</directory> <directory>tests</directory>
<directory>vendor</directory>
</exclude> </exclude>
</whitelist> </whitelist>
</filter> </filter>