Skip to content

Commit 33919c0

Browse files
committed
Ignore pip vulnerability
1 parent cfb4565 commit 33919c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ def security_python(session: Session) -> None:
130130
session.run("uvx", "bandit", "-r", PACKAGE_NAME, "-c", "bandit.yml", "-ll")
131131

132132
session.log(f"Running pip-audit dependency security check with py{session.python}.")
133-
session.run("uvx", "pip-audit")
133+
# temporarily ignore pip vulnerability, see comment https://github.com/pypa/pip/issues/13607#issuecomment-3356778034
134+
session.run("uvx", "pip-audit", "--ignore-vuln", "GHSA-4xh5-x5gv-qwph")
134135

135136

136137
@nox.session(python=PYTHON_VERSIONS, name="tests-python", tags=[TEST, PYTHON])

0 commit comments

Comments
 (0)