This commit is contained in:
Jakub Roztocil 2019-12-04 18:48:39 +01:00
parent ab3ea24630
commit 348cc7d5c5
2 changed files with 4 additions and 3 deletions

View File

@ -83,7 +83,7 @@ task during `setup`_—for your active shell session using the following command
source venv/bin/activate
(If you use ``virtualenvwrapper``, you can also use ``workon httpie`` to
active the environment — we have created a symlink for you. Its a bit of
activate the environment — we have created a symlink for you. Its a bit of
a hack but it works™.)
You should now see ``(httpie)`` next to your shell prompt, and

View File

@ -100,7 +100,7 @@ test-tox: uninstall-httpie install
@echo
test-sdist: clean uninstall-httpie
test-sdist: clean venv
@echo $(H1)Testing sdist build an installation$(H1END)
$(VENV_PYTHON) setup.py sdist
$(VENV_PIP) install --force-reinstall --upgrade dist/*.gz
@ -108,8 +108,9 @@ test-sdist: clean uninstall-httpie
@echo
test-bdist-wheel: clean uninstall-httpie
test-bdist-wheel: clean venv
@echo $(H1)Testing wheel build an installation$(H1END)
$(VENV_PIP) install wheel
$(VENV_PYTHON) setup.py bdist_wheel
$(VENV_PIP) install --force-reinstall --upgrade dist/*.whl
$(VENV_BIN)/http --version