1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Verify requirements_all in Travis

This commit is contained in:
Paulus Schoutsen
2015-12-17 23:51:34 -08:00
parent a0ff8819a9
commit b5fc7f5e71
4 changed files with 25 additions and 8 deletions

View File

@@ -1,15 +1,12 @@
cd "$(dirname "$0")/.."
echo "Update the submodule to latest version..."
git submodule update
echo "Installing dependencies..."
python3 -m pip install --upgrade -r requirements_all.txt
python3 -m pip install -q -r requirements_all.txt
REQ_STATUS=$?
echo "Installing development dependencies.."
python3 -m pip install --upgrade flake8 pylint coveralls pytest pytest-cov
python3 -m pip install -q flake8 pylint coveralls pytest pytest-cov
REQ_DEV_STATUS=$?