Skip to content
Snippets Groups Projects
Commit 90eac8e9 authored by Prada Sarasola, Miguel's avatar Prada Sarasola, Miguel
Browse files

Get rid of Python 'safety'-based check

parent a7bd3841
No related branches found
No related tags found
1 merge request!92Remove 'safety' check from 'py3-security' job
Pipeline #139454 passed
......@@ -15,11 +15,9 @@
.security_template:
stage: .post
before_script:
- ${PYTHON_VERSION} -m pip install bandit safety
- ${PYTHON_VERSION} -m pip install bandit
script:
- bandit -r . || RET=1
- safety check || RET=1
- exit $RET
- bandit -r .
allow_failure: true
.py3_template:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment