Commit 4dad592a authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'main' into fhg/mdct-stereo-comfort-noise-fix

parents 3dfd25c6 5b33b16e
Loading
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -707,6 +707,29 @@ split-rendering-voip-be-to-binaural:
      junit:
        - report-junit.xml

# test rtpdump
rtpdump-test:
  extends:
    - .test-job-linux
    - .rules-merge-request-to-main
  needs: ["build-codec-linux-make"]
  stage: test
  script:
    - make -j
    - testcase_timeout=15
    - 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
    when: always
    paths:
      - report-junit.xml
      - report.html
    expose_as: "rtpdump pytest results"
    reports:
      junit:
        - report-junit.xml

lc3-wrapper-unit-test:
  extends:
    - .test-job-linux
+0 −3
Original line number Diff line number Diff line
@@ -228,9 +228,6 @@ def test_param_file_tests(
):
    enc_opts, dec_opts, sim_opts, eid_opts = param_file_test_dict[test_tag]

    if "rtpdump" in test_tag:
        pytest.xfail("Skip RTP tests for now")

    run_test(
        test_info,
        props_to_record,
+1 −0
Original line number Diff line number Diff line
@@ -2,3 +2,4 @@ pytest>=5.3.5
pytest-xdist>=1.31.0
scipy>=1.5.2
numpy>=1.19.2
bitstring>=4.3.1

tests/rtp/ivasrtp.py

0 → 100644
+1653 −0

File added.

Preview size limit exceeded, changes collapsed.

tests/rtp/test_rtp.py

0 → 100644
+665 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading