Newer
Older
image: registry.git.cccv.de/infra/uffd/docker-images/buster
variables:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
DEBIAN_FRONTEND: noninteractive
before_script:
- python3 -V
- uname -a
linter:
stage: test
script:
- python3 -m pylint --rcfile .pylintrc --output-format=text uffd | tee pylint.txt
artifacts:
paths:
- pylint.txt
#unittest:
# stage: test
# script:
# - python3 -m coverage run runTests.py
# - python3 -m coverage report --include "./*"
# - python3 -m coverage report -m --include "./*" > report.txt
# - python3 -m coverage html --include "./*"
# artifacts:
# paths:
# - htmlcov/*
# - .coverage
# - report.txt