ensure images are build prior to running tests

Signed-off-by: bcambl <blayne@blaynecampbell.com>
This commit is contained in:
bcambl
2018-07-07 18:42:10 -06:00
parent e4a6dcd35c
commit 4c23964964
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -7,4 +7,8 @@ python:
install:
- pip install -r requirements.txt
script: py.test -vv -n auto
script:
# run tasks marked as 'build_stage' first (ensure docker images are built)
- py.test -vv -n auto -m "build_stage"
# run the remaining tasks in the test suite
- py.test -vv -n auto -m "not build_stage"