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-05-22 12:51:49 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-22 12:51:49 +0400
commit4b179a24a203a99c0182d1e808cee0d8a6eea876 (patch)
treed248f3748bd5aaa5734d0b3c82bbbc85509787c5 /tests/PHPUnit/travis.sh
parent0648552d55104ea220f0032b15cd4b5dd37577ab (diff)
calling travis_wait to work around "No output has been received in the last 10 minutes"
this potentially indicates a stalled build or something wrong with the build itself. https://travis-ci.org/piwik/piwik/jobs/25761087#L252
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 c70ba4b25b..3b71f6d9e8 100755
--- a/tests/PHPUnit/travis.sh
+++ b/tests/PHPUnit/travis.sh
@@ -43,9 +43,9 @@ then
else
if [ -n "$PLUGIN_NAME" ]
then
- phpunit --configuration phpunit.xml --colors --testsuite $TEST_SUITE --group $PLUGIN_NAME
+ travis_wait phpunit --configuration phpunit.xml --colors --testsuite $TEST_SUITE --group $PLUGIN_NAME
else
- phpunit --configuration phpunit.xml --testsuite $TEST_SUITE --colors
+ travis_wait phpunit --configuration phpunit.xml --testsuite $TEST_SUITE --colors
fi
fi
else