openlp/.gitlab-ci.yml

48 lines
1.2 KiB
YAML
Raw Normal View History

2019-09-17 05:20:23 +00:00
stages:
2019-09-18 16:44:39 +00:00
- lint
2019-09-17 05:20:23 +00:00
- test
2019-09-18 16:44:39 +00:00
lint:
stage: lint
image: openlp/debian
2019-09-18 16:44:39 +00:00
before_script:
- sh scripts/generate_resources.sh
2019-09-18 16:44:39 +00:00
script:
- flake8
2019-09-17 05:20:23 +00:00
test-debian:
stage: test
image: openlp/debian
2019-09-17 05:20:23 +00:00
before_script:
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings --ignore tests/functional/openlp_plugins/presentations/test_pdfcontroller.py --cov openlp --cov-report term --cov-report html
2019-09-17 05:20:23 +00:00
test-ubuntu:
stage: test
image: openlp/ubuntu
2019-09-17 05:20:23 +00:00
before_script:
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings --ignore tests/functional/openlp_plugins/presentations/test_pdfcontroller.py
2019-09-17 05:20:23 +00:00
test-fedora:
stage: test
image: openlp/fedora
2019-09-17 05:20:23 +00:00
before_script:
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings --ignore tests/functional/openlp_plugins/presentations/test_pdfcontroller.py
2019-09-17 05:20:23 +00:00
test-macos:
stage: test
tags:
- macos
before_script:
- export PATH=/opt/local/bin:$PATH
2019-09-17 05:20:23 +00:00
- sh scripts/generate_resources.sh
script:
- python3 -m pytest --color=no --disable-warnings
only:
- master@openlp/openlp