Commit ba024ea8 authored by norvell's avatar norvell
Browse files

Fix pass-through filtering for param file, syntax error in junit report

parent d1a7419b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1677,7 +1677,7 @@ test-branch-vs-input-passthrough:
    expose_as: "test-branch-vs-input-passthrough results"
    reports:
      junit:
        - report-junit-ltv.xml
        - report-junit.xml

# ---------------------------------------------------------------
# Scheduled jobs on main
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ def test_param_file_tests(

    # If compare_to_input is set, only run pass-through test cases
    if compare_to_input:
        passthrough = [(a, b) for (a, b) in PASSTHROUGH_CONF if re.search(a, enc_opts) and b in dec_opts]
        passthrough = [(a, b) for (a, b) in PASSTHROUGH_CONF if re.search(a, enc_opts) and b in dec_opts.split()[0]]
        if len(passthrough) != 1:
            pytest.skip()