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>2015-01-07 07:25:34 +0300
committermattab <matthieu.aubry@gmail.com>2015-01-07 07:25:34 +0300
commit742edc67417859db875bb982de7d82ae9b7bd2ae (patch)
tree20774ddae2538526e69ae59282ca4ce0dd252257 /plugins/TestRunner/templates
parentad1a341e0e1481c2cea5e7a184582f9538455478 (diff)
refs #6942 silencing apt-get commands to minimise CI log file size
Diffstat (limited to 'plugins/TestRunner/templates')
-rw-r--r--plugins/TestRunner/templates/travis.yml.twig4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TestRunner/templates/travis.yml.twig b/plugins/TestRunner/templates/travis.yml.twig
index a50fa1070a..fcac8e8900 100644
--- a/plugins/TestRunner/templates/travis.yml.twig
+++ b/plugins/TestRunner/templates/travis.yml.twig
@@ -174,8 +174,8 @@ before_script:
# Make sure we use Python 2.6
- travis_retry sudo add-apt-repository ppa:fkrull/deadsnakes -y
- - travis_retry sudo apt-get update
- - travis_retry sudo apt-get install python2.6 python2.6-dev -y --force-yes
+ - travis_retry sudo apt-get update > /dev/null
+ - travis_retry sudo apt-get install python2.6 python2.6-dev -y --force-yes > /dev/null
# Log Analytics works with Python 2.6 or 2.7 but we want to test on 2.6
- python2.6 --version