Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Safety policy file for `safety check`.
# Required by safety 3.x — the CLI looks for this file in cwd even when
# --ignore is passed inline. Ignores are kept on the tox command line
# (see tox.ini [testenv:safety]) so they stay visible in CI output.
security:
ignore-vulnerabilities: {}
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ deps =
skip_install = true
whitelist_externals=find
commands =
safety check -r requirements.txt --ignore 39642 --ignore 39659
safety check -r requirements-dev.txt
safety check -r requirements.txt --policy-file .safety-policy.yml --ignore 39642 --ignore 39659
safety check -r requirements-dev.txt --policy-file .safety-policy.yml

[testenv:bandit]
deps =
Expand Down
Loading