Commit 1317979b authored by norvell's avatar norvell
Browse files

Correct run command for encoder such that the result is assigned and reported.

parent 02360d4e
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.")