Add Docker test runner (#2673)
* Add docker test runner * Move test Dockerfile into virtualization folder * Don't build zwave in test environment
This commit is contained in:
parent
5faba21b8c
commit
cfa69fef1e
5 changed files with 46 additions and 1 deletions
5
script/lint_docker
Executable file
5
script/lint_docker
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
docker build -t home-assistant-test -f virtualization/Docker/Dockerfile.test .
|
||||
docker run --rm -it home-assistant-test tox -e lint
|
5
script/test_docker
Executable file
5
script/test_docker
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
docker build -t home-assistant-test -f virtualization/Docker/Dockerfile.test .
|
||||
docker run --rm -it home-assistant-test tox -e py34
|
Loading…
Add table
Add a link
Reference in a new issue