stages: - test pyflakes2: stage: test script: - apt-get update - apt-get -y -qq install python2.7 pyflakes - mkdir debug - cp game/*.rpy debug/ - cp game/*/*.rpy debug/ - python rparse.py - pyflakes debug/ image: debian:buster allow_failure: true sast: stage: test include: - template: Security/SAST.gitlab-ci.yml semgrep-sast: before_script: - mkdir debug - cp game/*.rpy debug/ - cp game/*/*.rpy debug/ - python rparse.py bandit-sast: before_script: - mkdir debug - cp game/*.rpy debug/ - cp game/*/*.rpy debug/ - python rparse.py - mv debug/*-sast.py . - sleep 1