Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Make install editable option an option #2299

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Fix test error string and add --editable test
  • Loading branch information
mlouielu committed Jun 28, 2018
commit 1997e580a93d5aaee0bc329379ba54a17f05631b
8 changes: 7 additions & 1 deletion tests/integration/test_install_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,13 @@ def test_editable_no_args(PipenvInstance):
with PipenvInstance() as p:
c = p.pipenv('install -e')
assert c.return_code != 0
assert 'Please provide path to editable package' in c.err
assert 'Error: -e option requires an argument' in c.err

with PipenvInstance() as p:
c = p.pipenv('install --editable')
assert c.return_code != 0
assert 'Error: -editable option requires an argument' in c.err



@pytest.mark.install
Expand Down