--- 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