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"