openlp/.gitlab-ci.yml

65 lines
3.2 KiB
YAML
Raw Normal View History

2019-09-17 05:20:23 +00:00
stages:
- test
test-debian:
stage: test
2019-09-17 20:18:08 +00:00
variables:
DEBIAN_FRONTEND: noninteractive
image: debian:unstable
2019-09-17 05:20:23 +00:00
before_script:
2019-09-17 20:18:08 +00:00
- apt-get update
- apt-get install -y python3 qttools5-dev-tools pyqt5-dev-tools python3-pyqt5 python3-pyqt5.qtmultimedia \
python3-pyqt5.qtsvg python3-pyqt5.qtopengl python3-pyqt5.qtwebchannel python3-pyqt5.qtwebkit \
python3-pyqt5.qtwebengine python3-sqlalchemy python3-chardet python3-lxml python3-enchant \
python3-bs4 python3-mako python3-uno python3-pytest python3-pytest-cov python3-pip \
python3-alembic python3-xdg python3-dbus.mainloop.pyqt5 python3-pep8 python3-websockets \
python3-waitress python3-webob python3-requests python3-pymediainfo python3-qtawesome \
python3-opengl python3-appdirs python3-vlc python3-zeroconf mediainfo pylint3 xvfb
2019-09-17 05:20:23 +00:00
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
test-ubuntu:
stage: test
2019-09-17 20:18:08 +00:00
variables:
DEBIAN_FRONTEND: noninteractive
image: ubuntu:rolling
2019-09-17 05:20:23 +00:00
before_script:
2019-09-17 20:18:08 +00:00
- apt-get update
- apt-get install -y python3 qttools5-dev-tools pyqt5-dev-tools python3-pyqt5 python3-pyqt5.qtmultimedia \
python3-pyqt5.qtsvg python3-pyqt5.qtopengl python3-pyqt5.qtwebchannel python3-pyqt5.qtwebkit \
python3-pyqt5.qtwebengine python3-sqlalchemy python3-chardet python3-lxml python3-enchant \
python3-bs4 python3-mako python3-uno python3-pytest python3-pytest-cov python3-pip \
python3-alembic python3-xdg python3-dbus.mainloop.pyqt5 python3-pep8 python3-websockets \
python3-waitress python3-webob python3-requests python3-pymediainfo python3-qtawesome \
python3-opengl python3-appdirs python3-vlc python3-zeroconf mediainfo pylint3 xvfb
2019-09-17 05:20:23 +00:00
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
test-fedora:
stage: test
2019-09-17 20:18:08 +00:00
image: fedora
2019-09-17 05:20:23 +00:00
before_script:
2019-09-17 20:18:08 +00:00
- dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm \
https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
- dnf install -y python3-PyQt5 python3-qt5-webkit python3-qt5-webengine python3-sqlalchemy python3-alembic \
python3-beautifulsoup4 python3-chardet python3-enchant python3-lxml python3-pyxdg python3-pytest \
python3-websockets python3-appdirs python3-webob python3-QtAwesome python3-waitress \
python3-pymediainfo python3-pyopengl python3-pylint python-pysword python3-requests \
mediainfo patch xorg-x11-server-Xvfb python3-vlc python3-zeroconf
2019-09-17 05:20:23 +00:00
- sh scripts/generate_resources.sh
script:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 -Wignore
test-macos:
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