Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion core/testcontainers/core/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,11 @@ def start(self) -> Self:
)

if self._wait_strategy is not None:
self._wait_strategy.wait_until_ready(self)
try:
self._wait_strategy.wait_until_ready(self)
except TimeoutError as ex:
ex.add_note(self._container.logs().decode())
raise ex

logger.info("Container started: %s", self._container.short_id)

Expand Down