Skip to content

Commit

Permalink
move phpunit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
tjallingt authored and pitbulk committed Mar 11, 2019
1 parent c7c92f8 commit c9026b2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ before_script:
- phpenv config-rm xdebug.ini

script:
- vendor/bin/phpunit --bootstrap tests/bootstrap.php --configuration tests/phpunit.xml
- vendor/bin/phpunit
- php vendor/bin/phpcpd --exclude tests --exclude vendor .
- php vendor/bin/phploc src/.
- mkdir -p tests/build/dependences
Expand Down
18 changes: 18 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="OneLogin PHP-SAML Test Suite">
<directory>./tests/src</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tests/build/coverage" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="test-xml" target="./tests/build/logfile.xml" logIncompleteSkipped="false"/>
<log type="coverage-clover" target="./tests/build/logs/clover.xml"/>
<log type="coverage-php" target="./tests/build/logs/coverage.cov"/>
</logging>
</phpunit>
18 changes: 0 additions & 18 deletions tests/phpunit.xml

This file was deleted.

0 comments on commit c9026b2

Please sign in to comment.