Skip to content
Snippets Groups Projects
Commit 2d6f66d6 authored by Donald Stufft's avatar Donald Stufft
Browse files

Update the invoke install task to properly install everything

parent 5c96efe9
No related branches found
No related tags found
No related merge requests found
......@@ -57,12 +57,13 @@ def install_nacl(library):
@task
def install(dev=False):
cmd = "pip install -e file://$PWD#egg=pynacl"
if dev:
cmd += "[tests]"
run(cmd)
# Install once to get the tests extra
run("pip install file://$PWD#egg=pynacl[tests]")
# Install again to get an editable install
run("pip install -e .")
else:
run("pip install .")
@task
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment