diff --git a/tests/functional/test_install_reqs.py b/tests/functional/test_install_reqs.py index 045409288..1e7e510fd 100644 --- a/tests/functional/test_install_reqs.py +++ b/tests/functional/test_install_reqs.py @@ -300,6 +300,12 @@ def test_constraints_local_editable_install_causes_error(script, data): assert 'Could not satisfy constraints for' in result.stderr +def test_constraints_local_editable_install_pep518(script, data): + to_install = data.src.join("pep518-3.0") + result = script.pip( + 'install', '--no-index', '-f', data.find_links, '-e', to_install) + + def test_constraints_local_install_causes_error(script, data): script.scratch_path.join("constraints.txt").write( "singlemodule==0.0.0"