From 9d1ce92c8f3e4d8ab41aec1f2453ce67ca73a938 Mon Sep 17 00:00:00 2001 From: coldino Date: Sun, 19 May 2024 19:32:32 +0100 Subject: [PATCH] Ignore vulnerability 67895 (idna) We don't accept user input. --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index d7fcfbb..91f44d6 100644 --- a/Pipfile +++ b/Pipfile @@ -31,7 +31,7 @@ psutil = "~=5.9.0" python_version = "3.10" [scripts] -check = "pipenv check -i 39253 -i 39621 -i 41002 -i 50916 -i 51457 -i 61416 -i 61893" +check = "pipenv check -i 39253 -i 39621 -i 41002 -i 50916 -i 51457 -i 61416 -i 61893 -i 67895" tests = "pytest --cov=. --cov-report=xml --no-cov-on-fail -m 'not uses_copyright_material'" tests-nogame = "pytest --cov=. --cov-report=xml --no-cov-on-fail -m 'not uses_copyright_material and not requires_game'" tests-nocov = "pytest -m 'not uses_copyright_material'"