From 84eb1b6cdbca40821358b76cdd25cd2607a1297f Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 10 Nov 2022 14:54:40 +0100 Subject: [PATCH] ci/cd - use staging LE for Docker tests --- tests/DockerTest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/DockerTest.py b/tests/DockerTest.py index a241a317d5..8d886ff8a0 100644 --- a/tests/DockerTest.py +++ b/tests/DockerTest.py @@ -40,6 +40,7 @@ def _setup_test(self) : Test.replace_in_file(compose, r"bunkerity/bunkerweb:.*$", "local/bw-tests:latest") Test.replace_in_file(compose, r"\./bw\-data:/", "/tmp/bw-data:/") Test.replace_in_file(compose, r"\- bw_data:/", "- /tmp/bw-data:/") + Test.replace_in_file(compose, r"AUTO_LETS_ENCRYPT=yes", "AUTO_LETS_ENCRYPT=yes\n - USE_LETS_ENCRYPT_STAGING=yes") for ex_domain, test_domain in self._domains.items() : Test.replace_in_files(test, ex_domain, test_domain) Test.rename(test, ex_domain, test_domain)