Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-03-17 07:59:30 +0400
committermattab <matthieu.aubry@gmail.com>2014-03-17 07:59:30 +0400
commit071ae83a840d31368e1860a740e7600ebebc46ff (patch)
tree614dee4b277ad2bbfe34b81e8e29921fd29ee4ec /tests/PHPUnit/travis.sh
parentccc0518a35cd05cba2782a2441624e10096217bf (diff)
Add --testdox to see which test crashes on Travis
Diffstat (limited to 'tests/PHPUnit/travis.sh')
-rwxr-xr-xtests/PHPUnit/travis.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/travis.sh b/tests/PHPUnit/travis.sh
index c9f4892459..7d01647c52 100755
--- a/tests/PHPUnit/travis.sh
+++ b/tests/PHPUnit/travis.sh
@@ -37,9 +37,9 @@ then
else
if [ -n "$PLUGIN_NAME" ]
then
- phpunit --configuration phpunit.xml --colors --testsuite $TEST_SUITE --group $PLUGIN_NAME
+ phpunit --testdox --configuration phpunit.xml --colors --testsuite $TEST_SUITE --group $PLUGIN_NAME
else
- phpunit --configuration phpunit.xml --testsuite $TEST_SUITE --colors
+ phpunit --testdox --configuration phpunit.xml --testsuite $TEST_SUITE --colors
fi
fi
else