1
0
Fork 0
forked from s3lph/matemat
matemat/.gitlab-ci.yml
2018-06-19 22:54:07 +02:00

20 lines
427 B
YAML

---
image: s3lph/matemat:20180619-01
stages:
- test
- codestyle
test:
stage: test
script:
- pip3 install -r requirements.txt
- python3-coverage run --branch -m unittest discover matemat
- python3-coverage report -m --include 'matemat/*' --omit '*/test_*.py'
codestyle:
stage: codestyle
script:
- pip3 install -r requirements.txt
- pycodestyle matemat
# - mypy --ignore-missing-imports --strict -p matemat