Commit d16928b5 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'ci/add-rtpdump-tests-to-basop' into 'main'

Add rtpdump test to basop ci

See merge request !51
parents 4737e8bf b9619d99
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
@@ -1420,6 +1420,32 @@ split-rendering-smoke-test:
      junit:
        - report-junit.xml

# test rtpdump
rtpdump-test:
  extends:
    - .test-job-linux
    - .rules-merge-request
  needs: ["build-codec-linux-make"]
  stage: test
  script:
    - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh
    - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/basop/update-scripts-repo.sh

    - make -j
    - testcase_timeout=60
    - 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