Convenience aliases for all wait strategies.
Instead of importing individual strategy modules, you can use this single module to access all wait strategies:
import TestcontainerEx.Wait
# Equivalent to:
# import TestcontainerEx.PortWaitStrategy
# import TestcontainerEx.HttpWaitStrategy
# import TestcontainerEx.LogWaitStrategy
# import TestcontainerEx.CommandWaitStrategyStrategies
| Strategy | Ready when... |
|---|---|
PortWaitStrategy | a TCP port accepts connections |
HttpWaitStrategy | an HTTP request succeeds |
LogWaitStrategy | a log line matches a regex |
CommandWaitStrategy | a command exits with code 0 |