1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-08 09:38:58 +01:00

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
+2 -2
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=$?