travis-ci.xml 706 Bytes
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://phpunit.de/phpunit.xsd"
         backupGlobals="false"
         bootstrap="../vendor/autoload.php"
         colors="true"
         verbose="true">
  <testsuite name="PHPCPD">
    <directory suffix="Test.php">../tests</directory>
  </testsuite>

  <logging>
    <log type="coverage-text" target="php://stdout"/>
  </logging>

  <filter>
    <whitelist processUncoveredFilesFromWhitelist="true">
      <directory suffix=".php">../src</directory>
      <exclude>
       <file>../src/autoload.php</file>
      </exclude>
    </whitelist>
  </filter>
</phpunit>