Skip to content

Commit

Permalink
testing: disable some CVE checks for new CVEs without fix
Browse files Browse the repository at this point in the history
This should be revised, but for now we can proceed without it.
  • Loading branch information
oz123 committed Nov 2, 2022
1 parent d696445 commit be92e26
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/integration/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,14 @@ 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')
# Note: added
# 51457: py <=1.11.0 resolved (1.11.0 installed)!
# this is install via pytest, and causes a false positive
# https://github.com/pytest-dev/py/issues/287
# the issue above is still not resolved.
# added also 51499
# https://github.com/pypa/wheel/issues/481
c = p.pipenv('check --ignore 35015 -i 51457 -i 51499')
assert c.returncode == 0
assert 'Ignoring' in c.stderr

Expand Down

0 comments on commit be92e26

Please sign in to comment.