mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 08:47:57 +00:00
Remove quiet pip installs on travis
This commit is contained in:
parent
dd60cc020e
commit
2e75f0b314
@ -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
|
||||
|
@ -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=$?
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user