Skip to content

Commit 3786fa6

Browse files
committed
chore: ignore another unapplicable safety warning
1 parent dad113e commit 3786fa6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

python/run-checks/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ runs:
3434

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

4041
- name: Run mypy
4142
shell: bash

0 commit comments

Comments
 (0)