--- # https://github.com/jendrikseipp/vulture image: registry.gitlab.com/notno/python-tests python:vulture: stage: test variables: MIN_CONFIDENCE: 100 CHECK_PATH: "./${PYTHON_PACKAGE}" DEFAULT_ARGS: "--ignore-names test_* --exclude tests/" script: - pip install . || true # installs package only if available - pip install vulture - python -m vulture --min-confidence ${MIN_CONFIDENCE} ${CHECK_PATH}