From a0217723d5439b5ab5d6b4f0cff8a1e8348a0469 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Sat, 3 Oct 2015 11:01:12 -0500 Subject: [PATCH] Use --verbose when running tests to show skipped/incomplete tests --- .travis.yml | 2 +- CONTRIBUTING.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 899443e..e1712a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c602dee..d7390e2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 ```