Skip to content

Commit

Permalink
ignore jinja2 safety issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bilgelm committed Sep 5, 2024
1 parent 105c298 commit 25f68c6
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 @@ -143,7 +143,14 @@ def safety(session: Session) -> None:
"""Scan dependencies for insecure packages."""
requirements = session.poetry.export_requirements()
session.install("safety")
session.run("safety", "check", "--full-report", f"--file={requirements}")
session.run(
"safety",
"check",
"--full-report",
f"--file={requirements}",
"--ignore",
"70612",
)


@session(python=python_versions)
Expand Down

0 comments on commit 25f68c6

Please sign in to comment.