Skip to content

Commit

Permalink
Updated PHPUnit configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Oct 25, 2017
1 parent a894c40 commit 92563f8
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,32 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="zend-barcode Test Suite">
<directory>./test/</directory>
<directory>./test</directory>
</testsuite>
</testsuites>

<groups>
<exclude>
<group>disable</group>
</exclude>
</groups>

<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>

<php>
<ini name="date.timezone" value="UTC"/>

<!-- Enable this if you have installed ZendPdf on the include_path or
via Composer -->
<env name="TESTS_ZEND_BARCODE_PDF_SUPPORT" value="false" />

</php>
</phpunit>

0 comments on commit 92563f8

Please sign in to comment.