mirror of
https://github.com/httpie/cli.git
synced 2024-11-08 17:04:50 +01:00
153 lines
3.7 KiB
Makefile
153 lines
3.7 KiB
Makefile
###############################################################################
|
|
# See ./CONTRIBUTING.rst
|
|
###############################################################################
|
|
|
|
VERSION=$(shell grep __version__ httpie/__init__.py)
|
|
REQUIREMENTS="requirements-dev.txt"
|
|
TAG="\n\n\033[0;32m\#\#\# "
|
|
END=" \#\#\# \033[0m\n"
|
|
|
|
|
|
all: uninstall-httpie install test
|
|
|
|
|
|
install:
|
|
@echo $(TAG)Installing dev requirements$(END)
|
|
pip install --upgrade -r $(REQUIREMENTS)
|
|
|
|
@echo $(TAG)Installing HTTPie$(END)
|
|
pip install --upgrade --editable .
|
|
|
|
@echo
|
|
|
|
clean:
|
|
@echo $(TAG)Cleaning up$(END)
|
|
rm -rf .tox *.egg dist build .coverage .cache .pytest_cache httpie.egg-info
|
|
find . -name '__pycache__' -delete -print -o -name '*.pyc' -delete -print
|
|
@echo
|
|
|
|
|
|
###############################################################################
|
|
# Testing
|
|
###############################################################################
|
|
|
|
|
|
test:
|
|
@echo $(TAG)Running tests on the current Python interpreter with coverage $(END)
|
|
py.test --cov ./httpie --cov ./tests --doctest-modules --verbose ./httpie ./tests
|
|
@echo
|
|
|
|
|
|
# test-all is meant to test everything — even this Makefile
|
|
test-all: uninstall-all clean install test test-tox test-dist pycodestyle
|
|
@echo
|
|
|
|
|
|
test-dist: test-sdist test-bdist-wheel
|
|
@echo
|
|
|
|
|
|
test-tox: uninstall-httpie install
|
|
@echo $(TAG)Running tests on all Pythons via Tox$(END)
|
|
tox
|
|
@echo
|
|
|
|
|
|
test-sdist: clean uninstall-httpie
|
|
@echo $(TAG)Testing sdist build an installation$(END)
|
|
python setup.py sdist
|
|
pip install --force-reinstall --upgrade dist/*.gz
|
|
which http
|
|
@echo
|
|
|
|
|
|
test-bdist-wheel: clean uninstall-httpie
|
|
@echo $(TAG)Testing wheel build an installation$(END)
|
|
python setup.py bdist_wheel
|
|
pip install --force-reinstall --upgrade dist/*.whl
|
|
which http
|
|
@echo
|
|
|
|
|
|
pycodestyle:
|
|
which pycodestyle || pip install pycodestyle
|
|
pycodestyle
|
|
@echo
|
|
|
|
|
|
coveralls:
|
|
which coveralls || pip install python-coveralls
|
|
coveralls
|
|
@echo
|
|
|
|
|
|
###############################################################################
|
|
# Publishing to PyPi
|
|
###############################################################################
|
|
|
|
|
|
publish: test-all publish-no-test
|
|
|
|
|
|
publish-no-test:
|
|
@echo $(TAG)Testing wheel build an installation$(END)
|
|
@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/*
|
|
@echo
|
|
|
|
|
|
|
|
###############################################################################
|
|
# Uninstalling
|
|
###############################################################################
|
|
|
|
uninstall-httpie:
|
|
@echo $(TAG)Uninstalling httpie$(END)
|
|
- pip uninstall --yes httpie &2>/dev/null
|
|
|
|
@echo "Verifying…"
|
|
cd .. && ! python -m httpie --version &2>/dev/null
|
|
|
|
@echo "Done"
|
|
@echo
|
|
|
|
|
|
uninstall-all: uninstall-httpie
|
|
|
|
@echo $(TAG)Uninstalling httpie requirements$(END)
|
|
- pip uninstall --yes pygments requests
|
|
|
|
@echo $(TAG)Uninstalling development requirements$(END)
|
|
- pip uninstall --yes -r $(REQUIREMENTS)
|
|
|
|
|
|
###############################################################################
|
|
# Docs
|
|
###############################################################################
|
|
|
|
pdf:
|
|
# NOTE: rst2pdf needs to be installed manually and against a Python 2
|
|
@echo "Converting README.rst to PDF…"
|
|
rst2pdf \
|
|
--strip-elements-with-class=no-pdf \
|
|
README.rst \
|
|
-o README.pdf
|
|
@echo "Done"
|
|
@echo
|
|
|
|
|
|
###############################################################################
|
|
# Homebrew
|
|
###############################################################################
|
|
|
|
brew-deps:
|
|
extras/brew-deps.py
|
|
|
|
brew-test:
|
|
- brew uninstall httpie
|
|
brew install --build-from-source ./extras/httpie.rb
|
|
brew test httpie
|
|
brew audit --strict httpie
|