Update test_pipenv_check to ignore new vulnerability with wheel<0.38

This commit is contained in:
Micah Smith
2022-11-02 15:22:08 -04:00
parent 135463653f
commit 93e97b7510
+1 -1
View File
@@ -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