mirror of
https://github.com/home-assistant/core.git
synced 2025-04-25 01:38:02 +00:00

* Add a volume to store the tox cache on the host. This gives quite some speed boost when running lint_docker and test_docker. * Only map .tox directory for cache.
7 lines
79 B
Bash
Executable File
7 lines
79 B
Bash
Executable File
#!/bin/sh
|
|
# Executes the tests with tox.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
tox -e py34
|