diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4f64fcfaecf77692fae229121d873e4116223a73..fa7b17bee2546d3fff315d248562a97dcd918a36 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -43,8 +43,6 @@ cppcheck:
     - cppcheck --version
   script:
     - ci/cppcheck.sh
-  tags:
-    - helit
 
 cppcheck-misra:
   stage: build
@@ -55,8 +53,6 @@ cppcheck-misra:
     - cppcheck --version
   script:
     - ci/cppcheck-misra.sh
-  tags:
-    - helit
 
 vera:
   stage: build
diff --git a/ci/cppcheck-misra.sh b/ci/cppcheck-misra.sh
index 6f9f2197956a45611b1b7d9506f071399dbc8eb3..e53877bcf20101b862278c41fab758aec5712f42 100755
--- a/ci/cppcheck-misra.sh
+++ b/ci/cppcheck-misra.sh
@@ -26,4 +26,5 @@ sed -i -r 's/(.*Script.*)|(.*Checking.*)|(.*MISRA.*)//gm; /(^$)/d; s/(\s\(.*\)\s
 
 # run the summarizer for a nice, clean summary of errors
 echo -e "\u001b[34;1mSummarizing results...\u001b[0m"
-ci/summarizer.py --report ci/report.msr --suppress 5.2 5.3 12.1 15.5 # these are random, will be replaced
+python3.6 ci/summarizer.py --report ci/report.msr --suppress 5.2 5.3 12.1 15.5 # these are random, will be replaced
+