From 6cc99f7a58fca65c9ec0a2417a5d9378e8a889ea Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Tue, 9 Dec 2025 13:52:16 +0100 Subject: [PATCH 1/2] remove skips in renderer pytest for mono/stereo --- tests/renderer/test_renderer.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/renderer/test_renderer.py b/tests/renderer/test_renderer.py index d12cb47b19..48892f1fd2 100644 --- a/tests/renderer/test_renderer.py +++ b/tests/renderer/test_renderer.py @@ -208,9 +208,6 @@ def test_dynamic_acoustic_environment( aeid, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - rend_config_path = TEST_VECTOR_DIR.joinpath("rend_config_combined.cfg") rend_config_path.with_stem("rend_config") @@ -263,9 +260,6 @@ def test_dynamic_acoustic_environment_file( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - rend_config_path = TEST_VECTOR_DIR.joinpath("rend_config_combined.cfg") rend_config_path.with_stem("rend_config") @@ -350,9 +344,6 @@ def test_multichannel_binaural_static( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - run_renderer( record_property, props_to_record, @@ -392,9 +383,6 @@ def test_multichannel_binaural_headrotation( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - run_renderer( record_property, props_to_record, @@ -1569,9 +1557,6 @@ def test_multichannel_binaural_headrotation_refvec_rotating( if test_info.config.option.create_ref or test_info.config.option.create_cut: pytest.skip("OTR tests only run for smoke test") - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - compare_renderer_args( record_property, props_to_record, -- GitLab From 51fd1420e7c5b133d3a4989b503b5c7675bcbede Mon Sep 17 00:00:00 2001 From: Archit Tamarapu Date: Thu, 18 Dec 2025 13:42:14 +0100 Subject: [PATCH 2/2] remove skips in renderer_short pytest for mono/stereo --- tests/renderer_short/test_renderer.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/renderer_short/test_renderer.py b/tests/renderer_short/test_renderer.py index c49750928e..e9875187c2 100644 --- a/tests/renderer_short/test_renderer.py +++ b/tests/renderer_short/test_renderer.py @@ -245,9 +245,6 @@ def test_dynamic_acoustic_environment( aeid, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - if in_fmt not in ["ISM4", "HOA3", "5_1", "MASA2", "ISM1MASA1", "ISM1SBA1"]: pytest.skip() @@ -309,9 +306,6 @@ def test_dynamic_acoustic_environment_file( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - if in_fmt not in ["ISM4", "HOA3", "5_1", "MASA2", "ISM1MASA1", "ISM1SBA1"]: pytest.skip() @@ -417,9 +411,6 @@ def test_multichannel_binaural_static( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - if fs != "48kHz": pytest.skip() @@ -468,9 +459,6 @@ def test_multichannel_binaural_headrotation( get_odg_bin, split_comparison, ): - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - if in_fmt != "5_1_4": if fs != "48kHz": pytest.skip() @@ -1875,9 +1863,6 @@ def test_multichannel_binaural_headrotation_refvec_rotating( if test_info.config.option.create_ref or test_info.config.option.create_cut: pytest.skip("OTR tests only run for smoke test") - if in_fmt in ["MONO", "STEREO"]: - pytest.skip("MONO or STEREO to Binaural rendering unsupported") - compare_renderer_args( record_property, props_to_record, -- GitLab