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:
authorMatthieu Aubry <matt@piwik.org>2014-11-10 09:06:24 +0300
committerMatthieu Aubry <matt@piwik.org>2014-11-10 09:06:24 +0300
commitc2019d1bd79db888671fdb9865baca8f84efd39d (patch)
treea0f229a56230e2bd462d6dbeea823e8683fe136e
parent5cf6e7867781c06c5fde6b2df620f786a7783b02 (diff)
parent919d42af9ebf5ae41773c19c78dd538808e830dd (diff)
Merge pull request #6621 from piwik/removeGroupsCheck
Removed group check before running any PHP tests.
-rwxr-xr-xtests/travis/travis.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/travis/travis.sh b/tests/travis/travis.sh
index 95a22d300d..7c5c3e7c1f 100755
--- a/tests/travis/travis.sh
+++ b/tests/travis/travis.sh
@@ -8,20 +8,6 @@ source $SCRIPT_DIR/travis-helper.sh
# go to tests directory
cd ../PHPUnit
-if [ "$TEST_SUITE" != "UITests" ] && [ "$TEST_SUITE" != "AngularJSTests" ]
-then
- 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 or have no tests. "
- echo " Please add the @group phpdoc comment to the following tests: <====="
- phpunit --group __nogroup__ --testdox | grep "[x]"
-
- echo "Initial output of \$phpunit --group __nogroup__ "
- phpunit --group __nogroup__
- exit 1
- fi
-fi
-
if [ -n "$TEST_SUITE" ]
then
echo "Executing tests in test suite $TEST_SUITE..."