tests - fix missing arg no_copy_container

This commit is contained in:
bunkerity 2022-07-25 10:34:11 +02:00
parent 07a962466b
commit 70ac3c01b3
No known key found for this signature in database
GPG key ID: 3D80806F12602A7C
3 changed files with 5 additions and 4 deletions

View file

@ -6,6 +6,7 @@
"swarm"
],
"timeout": 60,
"no_copy_container": true,
"tests": [
{
"type": "string",

View file

@ -9,8 +9,8 @@ from logger import log
class AutoconfTest(Test) :
def __init__(self, name, timeout, tests) :
super().__init__(name, "autoconf", timeout, tests)
def __init__(self, name, timeout, tests, no_copy_container=False) :
super().__init__(name, "autoconf", timeout, tests, no_copy_container=no_copy_container)
self._domains = {
r"www\.example\.com": getenv("TEST_DOMAIN1"),
r"auth\.example\.com": getenv("TEST_DOMAIN1"),

View file

@ -8,8 +8,8 @@ from logger import log
class DockerTest(Test) :
def __init__(self, name, timeout, tests) :
super().__init__(name, "docker", timeout, tests)
def __init__(self, name, timeout, tests, no_copy_container=False) :
super().__init__(name, "docker", timeout, tests, no_copy_container=no_copy_container)
self._domains = {
r"www\.example\.com": getenv("TEST_DOMAIN1"),
r"auth\.example\.com": getenv("TEST_DOMAIN1"),