diff --git a/ci/run_scheduled_sanitizer_test.py b/ci/run_scheduled_sanitizer_test.py index 644051a79bbc8165b10d91ca3c8c6d7f49773532..51e1e73eecaba64426450e069b168810c522eb44 100644 --- a/ci/run_scheduled_sanitizer_test.py +++ b/ci/run_scheduled_sanitizer_test.py @@ -49,6 +49,11 @@ def get_modes(in_format: str) -> list: in_format = "MC_" + in_format + "_b" mode_list = [m for m in mode_list if in_format in m] + # TODO: remove once #185 is fixed + # temporarily skip 24.4kbps SBA bitrate + if in_format == "SBA": + mode_list = [m for m in mode_list if not "b24_4" in m] + return mode_list