Use --verbose when running tests to show skipped/incomplete tests

This commit is contained in:
Ben Ramsey
2015-10-03 11:01:12 -05:00
parent c81933b700
commit a0217723d5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ before_script:
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --coverage-text
- ./vendor/bin/phpunit --verbose
- ./vendor/bin/phpcs src --standard=psr2 -sp
after_script:
+1 -1
View File
@@ -57,6 +57,6 @@ The following tests must pass before we will accept a pull request. If any of th
```
./vendor/bin/parallel-lint src tests
./vendor/bin/phpunit --coverage-text
./vendor/bin/phpunit --verbose
./vendor/bin/phpcs src --standard=psr2 -sp
```