From d103979dde548fe7269a1657ea8260e84958c179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Palmer?= Date: Tue, 14 Nov 2023 08:34:03 +0100 Subject: [PATCH] Tests: try multiple time to start the backend --- tests/integration/nano/utils/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/nano/utils/app.py b/tests/integration/nano/utils/app.py index 01155314..9b282f60 100644 --- a/tests/integration/nano/utils/app.py +++ b/tests/integration/nano/utils/app.py @@ -122,7 +122,7 @@ def __init__(self, self.navigator = NanoNavigator(backend, backend.firmware, golden_run) def __enter__(self) -> "TezosAppScreen": - self.backend.__enter__() + with_retry(self.backend.__enter__, attempts=3) return self def __exit__(self, *args):