Skip to content

Commit 6249346

Browse files
authored
Merge pull request #6143 from pypa/debug-weird-failures
debugging weird CI failures
2 parents 6868c81 + 27765a0 commit 6249346

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_pipenv_graph_reverse(pipenv_instance_private_pypi):
100100
from pipenv.cli import cli
101101
from pipenv.vendor.click.testing import CliRunner # not thread safe but graph is a tricky test
102102

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

134134
if sys.version_info[:2] == (3, 12):
135-
assert 'openpyxl==2.5.4 [requires: et-xmlfile]' in output
136-
else:
137135
assert 'openpyxl==2.5.4 [requires: et_xmlfile]' in output
136+
else:
137+
assert 'openpyxl==2.5.4 [requires: et-xmlfile]' in output
138138
else:
139139
dep_match = re.search(fr'^[ -]*{dep_name}==[\d.]+$',
140140
output,

0 commit comments

Comments
 (0)