Files
docker-pi-hole/tox.ini
2018-09-18 00:11:26 -05:00

14 lines
485 B
INI

[tox]
envlist = py27
[testenv]
whitelist_externals = docker
deps = -rrequirements.txt
# auto parallel max b/c race condition with docker fixture (I think?)
commands = docker run --rm --privileged multiarch/qemu-user-static:register --reset
./Dockerfile.py -v --arch amd64
pytest -vv -n auto -k amd64 ./test/
./Dockerfile.py -v --arch armhf --arch aarch64
pytest -vv -n auto -k armhf ./test/
pytest -vv -n auto -k aarch64 ./test/