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 95a318e commit e8d7a96Copy full SHA for e8d7a96
tests/integration/test_cli.py
@@ -142,7 +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 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("└──"))]
146
+ #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