diff --git a/tests/test_pip_audit.py b/tests/test_pip_audit.py index d52643342..4622f2dcc 100644 --- a/tests/test_pip_audit.py +++ b/tests/test_pip_audit.py @@ -25,6 +25,9 @@ def test_pip_audit_no_vulnerabilities(): This test will fail if any vulnerabilities are detected in the installed packages. Note: Document ignores here if vulnerabilities are acceptable. + pygments: CVE-2026-4539 - https://github.com/pygments/pygments/issues/3065 + not considered a security vulnerability by pygments. + """ # Get the project root directory project_root = Path(__file__).parent.parent @@ -34,8 +37,8 @@ def test_pip_audit_no_vulnerabilities(): "pip_audit", # "--format=json", "--progress-spinner=off", - # "--ignore-vuln", - # "CVE-2025-53000", + "--ignore-vuln", + "CVE-2026-4539", "--skip-editable", ]