disabled real adlists by default

This commit is contained in:
diginc 2017-01-10 22:58:27 -06:00
parent 136f43a995
commit 9f20dcc708
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ check_output = testinfra.get_backend(
def DockerGeneric(request, args, image, cmd):
assert 'docker' in check_output('id'), "Are you in the docker group?"
if 'diginc/pi-hole' in image:
args += " -e PYTEST=\"True\""
args += " -v /dev/null:/etc/pihole/adlists.default -e PYTEST=\"True\""
docker_run = "docker run -d {} {} {}".format(args, image, cmd)
docker_id = check_output(docker_run)