File: travis-ci.xml

package info (click to toggle)
phpcpd 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 264 kB
  • ctags: 368
  • sloc: php: 1,032; xml: 144; makefile: 23
file content (24 lines) | stat: -rw-r--r-- 706 bytes parent folder | download | duplicates (2)
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>