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 b4ba735 commit 6d86207Copy full SHA for 6d86207
tests/functional/test_install_reqs.py
@@ -624,9 +624,9 @@ def test_install_distribution_duplicate_extras(
624
) -> None:
625
to_install = data.packages.joinpath("LocalExtras")
626
package_name = f"{to_install}[bar]"
627
+ result = script.pip_install_local(package_name, package_name)
628
+ expected = f"Double requirement given: {package_name}"
629
with pytest.raises(AssertionError):
- result = script.pip_install_local(package_name, package_name)
- expected = f"Double requirement given: {package_name}"
630
assert expected in result.stderr
631
632
0 commit comments