Skip to content

Commit

Permalink
ignore security vulnerability in pytest:
Browse files Browse the repository at this point in the history
  • Loading branch information
picciama committed Jan 22, 2023
1 parent 8cab601 commit 6360bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -125,7 +125,7 @@ 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=51457")


@session(python=python_versions)
Expand Down

0 comments on commit 6360bef

Please sign in to comment.