Skip to content

Commit c9eaa69

Browse files
committed
Remove running pip-audit from CI.
pip has had a recent CVE, and as a library (and not an app) it is difficult to run pip-audit in a way that has value but is segregated from pip-audit's own deps such that we don't encounter this kind of false positive. Downstream applications should themselves run pip-audit as it is more suited for being run by applications rather than libraries.
1 parent ffaa2ee commit c9eaa69

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

noxfile.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ def tests(session):
6868
session.run("pytest", *session.posargs, PACKAGE)
6969

7070

71-
@session()
72-
def audit(session):
73-
"""
74-
Audit dependencies for vulnerabilities.
75-
"""
76-
session.install("pip-audit", ROOT)
77-
session.run("python", "-m", "pip_audit")
78-
79-
8071
@session(tags=["build"])
8172
def build(session):
8273
"""

0 commit comments

Comments
 (0)