1
0
mirror of https://github.com/httpie/cli.git synced 2026-04-24 19:53:55 +02:00

Fix tests

This commit is contained in:
Jakub Roztocil
2019-12-04 18:09:51 +01:00
parent 1bc54d4cb4
commit 38bc578744
2 changed files with 20 additions and 7 deletions
+4 -4
View File
@@ -93,7 +93,7 @@ test-dist: test-sdist test-bdist-wheel
test-tox: uninstall-httpie install
@echo $(H1)Running tests on all Pythons via Tox$(H1END)
tox
$(VENV_BIN)/tox
@echo
@@ -139,8 +139,8 @@ publish-no-test:
@echo $(H1)Testing wheel build an installation$(H1END)
@echo "$(VERSION)"
@echo "$(VERSION)" | grep -q "dev" && echo '!!!Not publishing dev version!!!' && exit 1 || echo ok
python setup.py sdist bdist_wheel
twine upload dist/*
$(VENV_PYTHON) setup.py sdist bdist_wheel
$(VENV_BIN)/twine upload dist/*
@echo
@@ -154,7 +154,7 @@ uninstall-httpie:
- $(VENV_PIP) uninstall --yes httpie &2>/dev/null
@echo "Verifying…"
cd .. && ! python -m httpie --version &2>/dev/null
cd .. && ! $(VENV_PYTHON) -m httpie --version &2>/dev/null
@echo "Done"
@echo