From 1317979b6feaf0372831c29e44ea335bfde098fe Mon Sep 17 00:00:00 2001 From: norvell Date: Fri, 15 Mar 2024 06:59:39 +0000 Subject: [PATCH] Correct run command for encoder such that the result is assigned and reported. --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index bbe16f4715..37b5281403 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -332,7 +332,7 @@ class EncoderFrontend: log_dbg_msg(f"{self._type} encoder command:\n{cmd_str}") try: - result = run(command, capture_output=True, check=True, timeout=self.timeout) + result = run(command, capture_output=True, check=False, timeout=self.timeout) except TimeoutExpired: pytest.fail(f"{self._type} encoder run timed out after {self.timeout}s.") -- GitLab