Remove quiet pip installs on travis

This commit is contained in:
Paulus Schoutsen 2015-12-18 00:35:53 -08:00
parent dd60cc020e
commit 2e75f0b314
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ python:
- 3.5
install:
# Validate requirements_all.txt on Python 3.5
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then python3 setup.py -q develop; script/gen_requirements_all.py validate; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then python3 setup.py develop; script/gen_requirements_all.py validate; fi
- script/bootstrap_server
script:
- script/cibuild

View file

@ -1,12 +1,12 @@
cd "$(dirname "$0")/.."
echo "Installing dependencies..."
python3 -m pip install -q -r requirements_all.txt
python3 -m pip install -r requirements_all.txt
REQ_STATUS=$?
echo "Installing development dependencies.."
python3 -m pip install -q flake8 pylint coveralls pytest pytest-cov
python3 -m pip install flake8 pylint coveralls pytest pytest-cov
REQ_DEV_STATUS=$?