Skip to content

Commit

Permalink
Fix ipv6 check on develop environment
Browse files Browse the repository at this point in the history
  • Loading branch information
aequitas authored and mxsasha committed Oct 15, 2024
1 parent b5f9169 commit 2a2a13e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/develop/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 2a2a13e

Please sign in to comment.