summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Barratt <david@davidwbarratt.com>2013-02-19 13:19:44 +0100
committerDavid Barratt <david@davidwbarratt.com>2013-02-19 13:19:44 +0100
commitb63f07a6b9d26fe55dd65d09e0de584629b7e8bc (patch)
treeef8f64842d022358884d99c0486d0f8f44b32430 /.travis.yml
parentdc5c5a371aeab5af6440c0c39a4501405636b826 (diff)
Set the --no-progress option for travis composer install command
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3b2f6bd57..ab0aa5616 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,7 @@ env:
- DB=pdo/sqlite
before_script:
- - composer install --dev
+ - composer install --dev --no-progress
- sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi"