* 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.
6 lines
79 B
Bash
Executable file
6 lines
79 B
Bash
Executable file
#!/bin/sh
|
|
# Executes the tests with tox.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
tox -e py34
|