From 93e97b75104f7b72017f7bf8e1cfd61b518f1a01 Mon Sep 17 00:00:00 2001 From: Micah Smith Date: Wed, 2 Nov 2022 15:22:08 -0400 Subject: [PATCH] Update test_pipenv_check to ignore new vulnerability with wheel<0.38 --- tests/integration/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index 7a6badb3..75acb744 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -152,7 +152,7 @@ def test_pipenv_check(pipenv_instance_private_pypi): assert c.returncode == 0 c = p.pipenv('install six') assert c.returncode == 0 - c = p.pipenv('check --ignore 35015') + c = p.pipenv('check --ignore 35015 --ignore 51499') assert c.returncode == 0 assert 'Ignoring' in c.stderr