2016-11-02 05:53:11 +01:00
|
|
|
sudo: required
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
|
2018-07-08 02:42:10 +02:00
|
|
|
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"
|