Skip to content

Commit

Permalink
fix safety ignore syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tasansal committed Jun 21, 2024
1 parent b5a6d33 commit 914b196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ def safety(session: Session) -> None:
requirements = session.poetry.export_requirements()
session.install("safety")
# TODO(Altay): Remove the CVE ignore once its resolved. Its not critical, so ignoring now.
ignore = [70612]
ignore = ["70612"]
session.run(
"safety",
"check",
"--full-report",
f"--file={requirements}",
f"--ignore={ignore}",
f"--ignore={','.join(ignore)}",
)


Expand Down

0 comments on commit 914b196

Please sign in to comment.