mirror of
https://github.com/home-assistant/core.git
synced 2025-10-09 19:59:30 +00:00
.github
docs
homeassistant
script
bootstrap
dev_docker
dev_openzwave_docker
gen_requirements_all.py
inspect_schemas.py
lazytox.py
lint
lint_docker
monkeytype
release
server
setup
test
test_docker
translations_develop
translations_download
translations_download_split.py
translations_upload
translations_upload_merge.py
travis_deploy
update
version_bump.py
tests
virtualization
.coveragerc
.dockerignore
.gitattributes
.gitignore
.hound.yml
.ignore
.isort.cfg
.travis.yml
CLA.md
CODEOWNERS
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Dockerfile
LICENSE.md
MANIFEST.in
README.rst
mypy.ini
pylintrc
requirements_all.txt
requirements_docs.txt
requirements_test.txt
requirements_test_all.txt
setup.cfg
setup.py
tox.ini

* Consolidate frontend * Remove home-assistant-polymer submodule * Convert to using a pypi package for frontend * fix release script * Lint * Remove unused file * Remove frontend related scripts * Move hass_frontend to frontend REQUIREMENTS * Fix tests * lint * Address comments * Lint + fix tests in py34 * Fix py34 tests again * fix typo
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
# Resolve all dependencies that the application requires to run.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "Installing test dependencies..."
|
|
python3 -m pip install tox colorlog
|