Skip to content

Commit

Permalink
move phpunit.xml to phpunit.xml.dist
Browse files Browse the repository at this point in the history
  • Loading branch information
TomK committed Apr 21, 2016
1 parent 8c140ab commit 4c1fc53
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -10,7 +10,7 @@ before_script:

script:
- mkdir -p build/logs
- vendor/phpunit/phpunit/phpunit --coverage-clover build/logs/clover.xml
- vendor/phpunit/phpunit/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist

after_script:
- php vendor/bin/coveralls -v
Expand Down
3 changes: 1 addition & 2 deletions phpunit.xml → phpunit.xml.dist
Expand Up @@ -3,14 +3,13 @@
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
strict="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
>
<testsuites>
<testsuite>
<directory>tests</directory>
Expand Down
2 changes: 1 addition & 1 deletion shippable.yml
Expand Up @@ -9,4 +9,4 @@ build:
ci:
- composer self-update
- composer install --no-interaction --no-progress --prefer-dist -o
- vendor/phpunit/phpunit/phpunit -dzend.enable_gc=0 --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage -c phpunit.xml
- vendor/phpunit/phpunit/phpunit -dzend.enable_gc=0 --log-junit shippable/testresults/junit.xml --coverage-xml shippable/codecoverage -c phpunit.xml.dist

0 comments on commit 4c1fc53

Please sign in to comment.