forked from s3lph/matemat
20 lines
430 B
YAML
20 lines
430 B
YAML
---
|
|
image: s3lph/matemat-ci: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
|