Skip to content

Commit

Permalink
ignore werkzeug safety issues w/ burnettk
Browse files Browse the repository at this point in the history
  • Loading branch information
jasquat committed Dec 2, 2024
1 parent ad8fbc7 commit 60042b6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion spiffworkflow-backend/bin/run_ci_session
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,14 @@ elif [[ "${session_type}" == "mypy" ]]; then

elif [[ "${session_type}" == "safety" ]]; then
# 72731 because flask-cors 5 actually fixes but safety just doesn't know: allows the Access-Control-Allow-Private-Network CORS header to be set to true by default
poetry run safety check --full-report --ignore=70624 --ignore=70612 --ignore=71600 --ignore=71594 --ignore=72731
poetry run safety check --full-report \
--ignore=70624 \
--ignore=70612 \
--ignore=71600 \
--ignore=71594 \
--ignore=73969 \
--ignore=73889 \
--ignore=72731

elif [[ "${session_type}" == "coverage" ]]; then
if ls .coverage.* 1>/dev/null 2>&1; then
Expand Down

0 comments on commit 60042b6

Please sign in to comment.