Skip to content

Commit

Permalink
debugging weird CI failures
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Apr 27, 2024
1 parent 6868c81 commit 7f7a8bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_cli.py
Original file line number Diff line number Diff line change
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 7f7a8bb

Please sign in to comment.