From bc1f7d6fa1bf84d47c68ce76c24c690375c750c0 Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 11 Nov 2022 16:51:46 +0100 Subject: [PATCH] temporarily disable 24.4kkbps SBA in sanitizer tests --- ci/run_scheduled_sanitizer_test.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/run_scheduled_sanitizer_test.py b/ci/run_scheduled_sanitizer_test.py index 644051a79b..51e1e73eec 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 -- GitLab