mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-15 02:42:58 +00:00
4c23964964
Signed-off-by: bcambl <blayne@blaynecampbell.com>
14 lines
334 B
YAML
14 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"
|