Skip to content

Commit

Permalink
PHPUnit Config for Travis Environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
francis94c committed Aug 6, 2019
1 parent 84322ec commit c5160cc
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions phpunit.xml
@@ -0,0 +1,27 @@
<phpunit bootstrap="travis-splint-0.0.4/index.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
verbose="true"
testdox="true">
<testsuites>
<testsuite name="Splint Test Suite">
<file>travis-splint-0.0.4/application/splints/francis94c/ci-rest/phpunit/RESTTest.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./travis-splint-0.0.4/application/splints/francis94c/ci-rest</directory>
<exclude>
<file>travis-splint-0.0.4/application/splints/francis94c/ci-rest/phpunit/RESTTest.php</file>
<file>travis-splint-0.0.4/application/splints/francis94c/ci-rest/phpunit/config/rest.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>
4 changes: 2 additions & 2 deletions travis.sh
@@ -1,7 +1,7 @@
# ENV
SPLINT_VERSION="0.0.2"
SPLINT_VERSION="0.0.4"
VENDOR="francis94c"
PACKAGE="ci-jwt"
PACKAGE="ci-rest"

created=false

Expand Down

0 comments on commit c5160cc

Please sign in to comment.