diff --git a/.travis.yml b/.travis.yml index 208084bf95b..c4f482d757f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/script/bootstrap_server b/script/bootstrap_server index 6a872dad151..a5533b0596d 100755 --- a/script/bootstrap_server +++ b/script/bootstrap_server @@ -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=$?