We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7d2f1b commit 231dafcCopy full SHA for 231dafc
1 file changed
test/test_transport_options.py
@@ -6,6 +6,7 @@
6
7
from testcontainers.core.container import DockerContainer
8
from testcontainers.core.network import Network
9
+from testcontainers.core.wait_strategies import PortWaitStrategy
10
from testcontainers.core.waiting_utils import wait_container_is_ready
11
12
from zitadel_client.transport_options import TransportOptions
@@ -61,6 +62,7 @@ def setup_class(cls) -> None:
61
62
.with_network(cls.network)
63
.with_exposed_ports(3128)
64
.with_volume_mapping(squid_conf, "/etc/squid/squid.conf", mode="ro")
65
+ .waiting_for(PortWaitStrategy(3128))
66
)
67
cls.proxy.start()
68
0 commit comments