Skip to content

Commit

Permalink
safety fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Reillyhewitson committed Oct 13, 2022
1 parent d8825fd commit a9e5816
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,14 @@ def safety(session):
f"--output={requirements.name}",
external=True,
)
session.run("safety", "check", f"--file={requirements.name}", "--full-report")
session.run(
"safety",
"check",
f"--file={requirements.name}",
"--full-report",
"--ignore",
"50916",
)

try:
# Due to delete=False, the file must be deleted manually
Expand Down

0 comments on commit a9e5816

Please sign in to comment.