--- image: registry.gitlab.com/notno/ci/images/python:latest python:mypy: stage: test variables: CHECK_PATH: "./${PYTHON_PACKAGE}" EXCLUDE_REGEX: '(tests/|setup.py)' # Keep the single quotes DEFAULT_SETTINGS: "--strict --ignore-missing-imports --show-error-context" EXTRA_SETTINGS: "" # Use this to add your settings to the default script: - pip3 install . || true # installs package only if available - pip3 install mypy - mypy --install-types --non-interactive --junit-xml ${CI_PROJECT_DIR}/mypy-report.xml --exclude $EXCLUDE_REGEX ${DEFAULT_SETTINGS} ${EXTRA_SETTINGS} ${CHECK_PATH} artifacts: reports: junit: mypy-report.xml cache: key: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG" paths: - .mypy_cache/