Commit 5fe57981 authored by Tapani Pihlajakuja's avatar Tapani Pihlajakuja
Browse files

Merge branch 'ci/update-masa-pytest-skipping' into 'main'

Makes pytest case skipping in MASA pytests as intended.

See merge request !764
parents f8c88e09 012f7fd9
Loading
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -102,10 +102,9 @@ def test_masa_enc_dec(

    # Apply test skipping here
    if dtx:
        if output_mode == 'EXT' and ivas_br in test_split_br:
            pytest.skip("Skipping some DTX bitrates for EXT")
        else:
            pytest.skip("Skipping some other DTX bitrates for other outputs")
        if output_mode != 'EXT':
            if ivas_br not in test_split_br:
                pytest.skip("Skipping some DTX bitrates for other than EXT output to save time")

    # Set reference encoder and decoder
    ref_encoder_frontend = EncoderFrontend(ref_encoder_path, "REF")