Skip to content

Commit

Permalink
chore: ignore another unapplicable safety warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow53 committed Nov 1, 2021
1 parent dad113e commit 3786fa6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions python/run-checks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ runs:

- name: Run safety
shell: bash
# Ignore safety advisory for encrypted values in sqlalchemy-utils, a feature we don't use.
run: poetry export -f requirements.txt | poetry run safety check --bare --stdin -i 42194
# 42194: Ignore safety advisory for encrypted values in sqlalchemy-utils, a feature we don't use.
# 42050: Ignore safety advisory for more secure cookies in werkzeug, another unused feature.
run: poetry export -f requirements.txt | poetry run safety check --bare --stdin -i 42194 -i 42050

- name: Run mypy
shell: bash
Expand Down

0 comments on commit 3786fa6

Please sign in to comment.