From 3e40944b4ed0ed6146c63702db4208126d71bd2c Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 26 Mar 2026 07:15:21 +0100 Subject: [PATCH] test: skip pygments vulnerability for now --- tests/test_pip_audit.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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", ]