15 lines
334 B
YAML
15 lines
334 B
YAML
sudo: required
|
|
services:
|
|
- docker
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
|
|
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"
|