gstreamer/.gitlab-ci.yml
2018-11-05 14:31:52 +02:00

15 lines
343 B
YAML

stages:
- test
test manifest:
image: "fedora"
stage: "test"
before_script:
- dnf install -y python3-pytest python3-pytest-cov python3-requests
script:
- pytest-3 --junitxml=junit.xml --cov=build_manifest gitlab/build_manifest.py
coverage: '/TOTAL.*\s+(\d+%)$/'
artifacts:
reports:
junit:
- "junit.xml"