This website requires JavaScript.
Explore
Help
Sign In
Home-Assistant
/
core
mirror of
https://github.com/home-assistant/core.git
Watch
1
Star
0
Fork
You've already forked core
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
900868708e
core
/
script
/
test
7 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add exec + doc header
2015-09-17 07:38:52 +00:00
#!/bin/sh
Speeds up lint and test in docker by keeping the cache between invocations. (#5177) * 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.
2017-01-05 08:45:14 +00:00
# Executes the tests with tox.
cd "$(dirname "$0")/.."
Add exec + doc header
2015-09-17 07:38:52 +00:00
convert testing infrastructure to tox This converts the testing infrastructure to tox for both locally testing and travis. This is nearly equivalent to the previous testing with the only exception that linting fails with the first tool to fail and won't process all of them. Slightly tricky thing is that tox resets *all* of the environment for it's subprocess runs by default. A couple of the dependencies we have will not install in non UTF8 locales: temper-python & XBee.
2016-02-14 00:56:32 +00:00
tox -e py34