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 2017df6 commit a6a5af6Copy full SHA for a6a5af6
tests/integration/test_cli.py
@@ -142,7 +142,7 @@ 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("openpyxl==2.5.4\\s*\\[requires:\\s*et-xmlfile\\]", output, flags=re.MULTILINE | re.IGNORECASE)
+ assert re.search(r"openpyxl==2\.5\.4\s*\[requires:\s*et[-_]xmlfile\]", output, flags=re.MULTILINE | re.IGNORECASE)
146
else:
147
dep_match = re.search(
148
rf"^[ -]*{dep_name}==[\d.]+$",
0 commit comments