2019-09-17 05:20:23 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
|
|
|
|
test-debian:
|
|
|
|
stage: test
|
|
|
|
image: registry.gitlab.com/openlp/runner:debian
|
|
|
|
before_script:
|
|
|
|
- sh scripts/generate_resources.sh
|
|
|
|
script:
|
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
|
|
|
|
|
|
|
test-ubuntu:
|
|
|
|
stage: test
|
|
|
|
image: registry.gitlab.com/openlp/runner:ubuntu
|
|
|
|
before_script:
|
|
|
|
- sh scripts/generate_resources.sh
|
|
|
|
script:
|
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
|
|
|
|
|
|
|
test-fedora:
|
|
|
|
stage: test
|
|
|
|
image: registry.gitlab.com/openlp/runner:fedora
|
|
|
|
before_script:
|
|
|
|
- sh scripts/generate_resources.sh
|
|
|
|
script:
|
|
|
|
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
|
|
|
|
|
|
|
|
test-macos:
|
2019-09-17 06:41:16 +00:00
|
|
|
only:
|
|
|
|
- master@openlp/openlp
|
2019-09-17 05:20:23 +00:00
|
|
|
stage: test
|
|
|
|
tags:
|
|
|
|
- macos
|
|
|
|
before_script:
|
|
|
|
- sh scripts/generate_resources.sh
|
|
|
|
script:
|
|
|
|
- python3 -m pytest -v --color=no --disable-warnings --ignore=tests/utils
|