Commit e6681da5 authored by Lauros Pajunen's avatar Lauros Pajunen
Browse files

Add tb=no, reduce rtpdump test combinations

parent f3902b29
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -717,7 +717,7 @@ rtpdump-test:
  script:
    - make -j
    - testcase_timeout=30
    - python3 -m pytest -q -n auto -rA --html=report.html --self-contained-html --junit-xml=report-junit.xml tests/rtp/test_rtp.py --testcase_timeout=$testcase_timeout
    - python3 -m pytest -q --tb=no -n auto -rA --html=report.html --self-contained-html --junit-xml=report-junit.xml tests/rtp/test_rtp.py --testcase_timeout=$testcase_timeout
  artifacts:
    name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results"
    expire_in: 1 week
+5 −5
Original line number Diff line number Diff line
@@ -94,10 +94,10 @@ def test_rtp_bitstream_amrwb(


@pytest.mark.parametrize("dtx", [False, True])
@pytest.mark.parametrize("bitrate", [9600, 24400, 128000])
@pytest.mark.parametrize("bandwidth", ["NB", "WB", "SWB", "FB"])
@pytest.mark.parametrize("bitrate", [24400, 48000])
@pytest.mark.parametrize("bandwidth", ["WB", "SWB", "FB"])
@pytest.mark.parametrize("caMode", ["OFF", "LO", "HI"])
@pytest.mark.parametrize("framesPerPacket", [1, 3, 8])
@pytest.mark.parametrize("framesPerPacket", [3])
def test_rtp_bitstream_evs(
    test_info,
    bitrate: int,
@@ -121,7 +121,7 @@ def test_rtp_bitstream_evs(
    )


@pytest.mark.parametrize("bitrate", [24400, 80000, 512000])
@pytest.mark.parametrize("bitrate", [16400, 32000, 48000])
@pytest.mark.parametrize("bandwidth", ["WB", "SWB", "FB"])
@pytest.mark.parametrize("format", ["STEREO", "SBA", "MC", "MASA"])
@pytest.mark.parametrize("framesPerPacket", [8])
@@ -147,7 +147,7 @@ def test_rtp_bitstream_ivas_nodtx(
    )


@pytest.mark.parametrize("bitrate", [13200, 24400, 80000])
@pytest.mark.parametrize("bitrate", [13200, 24400, 64000])
@pytest.mark.parametrize("bandwidth", ["WB", "SWB", "FB"])
@pytest.mark.parametrize("format", ["STEREO", "SBA"])
@pytest.mark.parametrize("framesPerPacket", [1, 3])