From 2a2a13e30e70e41a87d8d9f16249ac709a8fd00c Mon Sep 17 00:00:00 2001 From: Johan Bloemberg Date: Mon, 14 Oct 2024 17:51:14 +0200 Subject: [PATCH] Fix ipv6 check on develop environment --- integration_tests/develop/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/develop/conftest.py b/integration_tests/develop/conftest.py index daa481e6d..09bca45d1 100644 --- a/integration_tests/develop/conftest.py +++ b/integration_tests/develop/conftest.py @@ -19,8 +19,8 @@ def ipv6_available(): """Test if IPv6 is available inside development environment""" try: command = ( - "docker compose --ansi=never --project-name=internetnl-dev exec -ti app", - f"curl -6 --silent --show-error --fail --output /dev/null {IPV6_AVAILABILITY_DOMAIN}", + "docker compose --ansi=never --project-name=internetnl-develop exec -ti app " + + f"curl -6 --show-error --fail {IPV6_AVAILABILITY_DOMAIN}", ) subprocess.check_output(command, shell=True) except subprocess.CalledProcessError: