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>2013-10-23 05:19:29 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-23 05:19:29 +0400
commitabcb06605f3ec31723c92a85964563e650358b94 (patch)
tree4ed6d48ced0f2eea03eff235774ac566e28cbdaa /tests/PHPUnit/travis.sh
parentdacc45c0183664a08fbed939a0b9c1ba15a957ae (diff)
Make that message clearer [ci skip]
Diffstat (limited to 'tests/PHPUnit/travis.sh')
-rwxr-xr-xtests/PHPUnit/travis.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PHPUnit/travis.sh b/tests/PHPUnit/travis.sh
index f56c44af95..debc9d5e52 100755
--- a/tests/PHPUnit/travis.sh
+++ b/tests/PHPUnit/travis.sh
@@ -2,7 +2,8 @@
if [ `phpunit --group __nogroup__ | grep "No tests executed" | wc -l` -ne 1 ]
then
- echo "There are some tests functions which do not have a @group set. Please add the @group phpdoc comment to these tests:"
+ echo "=====> There are some tests functions which do not have a @group set. "
+ echo " Please add the @group phpdoc comment to the following tests: <====="
phpunit --group __nogroup__ --testdox
exit 1
else