We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d7a96 commit 6206c94Copy full SHA for 6206c94
tests/integration/test_cli.py
@@ -142,8 +142,8 @@ def test_pipenv_graph_reverse(pipenv_instance_private_pypi):
142
assert (
143
openpyxl_dep is None
144
), f"openpyxl should not appear at beginning of lines in {output}"
145
- assert "openpyxl==2.5.4 [requires: et-xmlfile]" in [i.strip() for i in (output.split("└──"))]
146
- #assert re.search(r"openpyxl==2\.5\.4\s*\[requires:\s*et-xmlfile\]", output, flags=re.MULTILINE | re.IGNORECASE)
+ #assert "openpyxl==2.5.4 [requires: et_xmlfile]" in [i.strip() for i in (output.split("└──"))]
+ assert re.search(r"openpyxl==2\.5\.4\s*\[requires:\s*et[-_]xmlfile\]", output, flags=re.MULTILINE | re.IGNORECASE)
147
else:
148
dep_match = re.search(
149
rf"^[ -]*{dep_name}==[\d.]+$",
0 commit comments