From cea9dbc97173c74737fed3381a0d93721782762c Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Mon, 24 Feb 2025 14:58:23 +0100 Subject: [PATCH] You need to seek apparently. (#3049) --- integration-tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index 5e5dfc2a0..ed27e0589 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -101,6 +101,7 @@ def container_log(request: SubRequest): print(error_log.read(), file=sys.stderr) else: error_log.truncate(0) + error_log.seek(0) class ResponseComparator(JSONSnapshotExtension):