Skip to content

Commit

Permalink
Merge pull request #6143 from pypa/debug-weird-failures
Browse files Browse the repository at this point in the history
debugging weird CI failures
  • Loading branch information
matteius committed Apr 27, 2024
2 parents 6868c81 + 27765a0 commit 6249346
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_cli.py
Expand Up @@ -100,7 +100,7 @@ def test_pipenv_graph_reverse(pipenv_instance_private_pypi):
from pipenv.cli import cli
from pipenv.vendor.click.testing import CliRunner # not thread safe but graph is a tricky test

with (pipenv_instance_private_pypi() as p):
with pipenv_instance_private_pypi() as p:
c = p.pipenv('install tablib==0.13.0')
assert c.returncode == 0
cli_runner = CliRunner(mix_stderr=False)
Expand Down Expand Up @@ -132,9 +132,9 @@ def test_pipenv_graph_reverse(pipenv_instance_private_pypi):
assert openpyxl_dep is None, f'openpyxl should not appear at beginning of lines in {output}'

if sys.version_info[:2] == (3, 12):
assert 'openpyxl==2.5.4 [requires: et-xmlfile]' in output
else:
assert 'openpyxl==2.5.4 [requires: et_xmlfile]' in output
else:
assert 'openpyxl==2.5.4 [requires: et-xmlfile]' in output
else:
dep_match = re.search(fr'^[ -]*{dep_name}==[\d.]+$',
output,
Expand Down

0 comments on commit 6249346

Please sign in to comment.