diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..61b18e6 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +.tests: + stage: test + + script: + - cd tests + - pytest --junitxml=report.xml + report: + junit: tests/report.xml + +test:ubuntu_18_04: + image: registry.gitlab.com/ganciaux/slides:ubuntu_18_04 + extends: + - .tests + +test:ubuntu_19_10: + image: registry.gitlab.com/ganciaux/slides:ubuntu_19_10 + extends: + - .tests