1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
.PHONY: clean-pyc clean-build docs
open := $(shell { which xdg-open || which open; } 2>/dev/null)
python = python3
help:
@echo "Please use \`make <target>' where <target> is one of"
@echo " clean-build to remove build artifacts"
@echo " clean-pyc to remove Python file artifacts"
@echo " lint to check style with flake8"
@echo " test to run tests quickly with the default Python"
@echo " testall to run tests on every Python version with tox"
@echo " coverage to check code coverage quickly with the default Python"
@echo " docs to generate Sphinx HTML documentation, including API docs"
@echo " release to package and upload a release"
@echo " sdist to package"
clean: clean-build clean-pyc
clean-build:
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
clean-pyc:
find . -name '*.pyc' -type f -exec rm -f {} +
find . -name '*.pyo' -type f -exec rm -f {} +
find . -name '*~' -type f -exec rm -f {} +
find . -name '__pycache__' -type d -exec rm -rf {} +
lint:
flake8 snimpy tests
interrogate --fail-under 50 -v snimpy tests
test:
$(python) -m pytest
test-all:
tox
coverage:
coverage run --source snimpy -m unittest discover -s tests
coverage report -m
coverage html
$(open) htmlcov/index.html
docs:
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(open) docs/_build/html/index.html
release: clean
$(python) -m build
twine upload dist/*.tar.gz
sdist: clean
$(python) -m build
ls -l dist
|