First tests!

This commit is contained in:
2022-03-10 11:22:04 +01:00
parent d7f8fcec88
commit 1494f1a5e0
6 changed files with 97 additions and 0 deletions

13
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,13 @@
run tests:
stage: test
image: python:3.8
script:
- pip install pytest pytest-cov
- coverage run -m pytest
- coverage report
- coverage xml
artifacts:
reports:
cobertura: coverage.xml
tags:
- docker