Loading tests/conftest.py +1 −1 Original line number Diff line number Diff line Loading @@ -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.") Loading Loading
tests/conftest.py +1 −1 Original line number Diff line number Diff line Loading @@ -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.") Loading