Commit 72614796 authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

fix: mypy doesnt need test image, mutmut does

parent 6e398cea
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2,6 +2,11 @@
# mutmut is a tool to perform mutation testing on python
# https://mutmut.readthedocs.io/en/latest/

# This variable tells the kaniko job to add python testing packages
# to a separate testing image
variables:
  PYTHON_TEST: "true"

python:mutmut:
  stage: test
  image: ${CI_REGISTRY_IMAGE}:${CI_COMMIT_REF_NAME}-testing
+0 −5
Original line number Diff line number Diff line
@@ -2,11 +2,6 @@
# https://github.com/python/mypy
# this job uses mypy2junit to get the junitxml report in gitlab CI

# This variable tells the kaniko job to add python testing packages
# to a separate testing image
variables:
  PYTHON_TEST: "true"

python:mypy:
  stage: test
  image: registry.gitlab.com/notno/python-tests