Commit 03e6586c authored by Archit Tamarapu's avatar Archit Tamarapu
Browse files

[tests] re-enable experiments tests and remove skips from MASA tests

parent 37eaa4bf
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ check_for_binaries:
# ------------------------------------

# test the format conversion only
test_audiotools_convert:
test-audiotools-convert:
  stage: test
  tags:
    - linux
@@ -80,7 +80,7 @@ test_audiotools_convert:
    - python3 -m pytest -n auto tests/test_audiotools_convert.py

# run the test configs for the selection experiments
.experiments:
test-experiments:
  stage: test
  tags:
    - linux
@@ -97,7 +97,7 @@ test_audiotools_convert:
    expire_in: 1 week

# run some test configs for item creation
test_processing:
test-processing:
  stage: test
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
+0 −4
Original line number Diff line number Diff line
@@ -165,7 +165,6 @@ def test_ism(in_fmt, out_fmt):
    convert(in_fmt, out_fmt, in_meta=FORMAT_TO_METADATA_FILES[in_fmt])


@pytest.mark.skip("Runner needs masaRenderer")
@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS)
@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA)
def test_masa(in_fmt, out_fmt):
@@ -178,7 +177,6 @@ def test_metadata(in_fmt, out_fmt):
    convert("META", out_fmt, metadata_input=SCENE_DESC_DIR.joinpath(f"{in_fmt}.txt"))


@pytest.mark.skip("Runner needs masaRenderer")
@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS)
@pytest.mark.parametrize("in_fmt", METADATA_SCENES_TO_TEST_NO_BE)
def test_metadata_masa(in_fmt, out_fmt):
@@ -203,7 +201,6 @@ def test_ism_binaural_static(in_fmt, out_fmt):
    convert(in_fmt, out_fmt, in_meta=in_meta)


@pytest.mark.skip("Runner needs masaRenderer")
@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL)
@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA)
def test_masa_binaural_static(in_fmt, out_fmt):
@@ -245,7 +242,6 @@ def test_ism_binaural_headrotation(in_fmt, out_fmt, trj_file):
    )


@pytest.mark.skip("Runner needs masaRenderer")
@pytest.mark.parametrize("trj_file", HR_TRAJECTORIES_TO_TEST)
@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL)
@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA)