2018-05-29 21:49:40 +02:00
|
|
|
---
|
2018-06-19 22:55:37 +02:00
|
|
|
image: s3lph/matemat-ci:20180619-01
|
2018-05-29 21:49:40 +02:00
|
|
|
|
2018-06-05 22:38:42 +02:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- codestyle
|
|
|
|
|
2018-05-29 21:49:40 +02:00
|
|
|
test:
|
2018-06-05 22:38:42 +02:00
|
|
|
stage: test
|
2018-05-29 21:49:40 +02:00
|
|
|
script:
|
|
|
|
- pip3 install -r requirements.txt
|
2018-06-19 22:54:07 +02:00
|
|
|
- python3-coverage run --branch -m unittest discover matemat
|
2018-06-05 19:14:35 +02:00
|
|
|
- python3-coverage report -m --include 'matemat/*' --omit '*/test_*.py'
|
2018-06-05 22:32:09 +02:00
|
|
|
|
|
|
|
codestyle:
|
2018-06-05 22:38:42 +02:00
|
|
|
stage: codestyle
|
2018-06-05 22:32:09 +02:00
|
|
|
script:
|
|
|
|
- pip3 install -r requirements.txt
|
2018-06-06 13:03:30 +02:00
|
|
|
- pycodestyle matemat
|
2018-06-06 13:24:36 +02:00
|
|
|
# - mypy --ignore-missing-imports --strict -p matemat
|