Commit cf494821 authored by norvell's avatar norvell
Browse files

Merge branch 'ci/fix-encoder-run-error-reporting' into 'main'

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

See merge request !1460
parents 02360d4e 1317979b
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.")