mirror of
https://github.com/pi-hole/docker-pi-hole.git
synced 2026-04-21 09:19:47 +01:00
delete all the alpine
This commit is contained in:
@@ -58,12 +58,11 @@ def args(request):
|
||||
def arch(request):
|
||||
return request.param
|
||||
|
||||
@pytest.fixture(params=['debian', 'alpine'])
|
||||
@pytest.fixture(params=['debian'])
|
||||
def os(request):
|
||||
return request.param
|
||||
|
||||
@pytest.fixture()
|
||||
@pytest.mark.skipif((os == 'alpine' and arch == 'aarch64'), 'musl does not have aarch64 yet')
|
||||
def tag(request, os, arch):
|
||||
return '{}_{}'.format(os, arch)
|
||||
|
||||
@@ -90,7 +89,7 @@ def persist_arch(request):
|
||||
'''amd64 only, dnsmasq will not start under qemu-user-static :('''
|
||||
return request.param
|
||||
|
||||
@pytest.fixture(scope='module', params=['debian', 'alpine'])
|
||||
@pytest.fixture(scope='module', params=['debian'])
|
||||
def persist_os(request):
|
||||
return request.param
|
||||
|
||||
@@ -98,7 +97,6 @@ def persist_os(request):
|
||||
def persist_args(request):
|
||||
return '-e ServerIP="127.0.0.1" -e ServerIPv6="::1"'
|
||||
|
||||
@pytest.mark.skipif((persist_os == 'alpine' and persist_arch == 'aarch64'), 'musl does not have aarch64 yet')
|
||||
@pytest.fixture(scope='module')
|
||||
def persist_tag(request, persist_os, persist_arch):
|
||||
return '{}_{}'.format(persist_os, persist_arch)
|
||||
|
||||
Reference in New Issue
Block a user