Commit 17ecc8ea authored by Lauros Pajunen's avatar Lauros Pajunen
Browse files

Add rtpdump test to pipeline

parent 5fc84ba4
Loading
Loading
Loading
Loading
Loading
+22 −0
Original line number Original line Diff line number Diff line
@@ -697,6 +697,28 @@ split-rendering-voip-be-to-binaural:
      junit:
      junit:
        - report-junit.xml
        - 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=30
    - python3 -m pytest -q -n auto -rA --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
    expose_as: "rtpdump pytest results"
    reports:
      junit:
        - report-junit.xml

lc3-wrapper-unit-test:
lc3-wrapper-unit-test:
  extends:
  extends:
    - .test-job-linux
    - .test-job-linux