2014-04-19 17:18:51 +00:00
|
|
|
.PHONY: clean-pyc clean-build docs
|
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "clean-build - remove build artifacts"
|
|
|
|
@echo "clean-pyc - remove Python file artifacts"
|
|
|
|
@echo "lint - check style with flake8"
|
|
|
|
@echo "test - run tests quickly with the default Python"
|
|
|
|
@echo "testall - run tests on every Python version with tox"
|
|
|
|
@echo "coverage - check code coverage quickly with the default Python"
|
|
|
|
@echo "release - package and upload a release"
|
|
|
|
@echo "sdist - package"
|
|
|
|
|
|
|
|
clean: clean-build clean-pyc
|
|
|
|
|
|
|
|
clean-build:
|
|
|
|
rm -fr build/
|
|
|
|
rm -fr dist/
|
|
|
|
rm -fr *.egg-info
|
|
|
|
|
|
|
|
clean-pyc:
|
|
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
|
|
|
|
lint:
|
2015-07-18 14:55:46 +00:00
|
|
|
flake8 djangocms_blog tests
|
2014-08-29 04:01:10 +00:00
|
|
|
djangocms-helper djangocms_blog pyflakes --cms
|
2014-04-19 17:18:51 +00:00
|
|
|
|
|
|
|
test:
|
2014-08-29 04:01:10 +00:00
|
|
|
djangocms-helper djangocms_blog test --cms --nose
|
2014-04-19 17:18:51 +00:00
|
|
|
|
|
|
|
test-all:
|
|
|
|
tox
|
|
|
|
|
|
|
|
coverage:
|
2014-08-29 04:01:10 +00:00
|
|
|
coverage erase
|
|
|
|
coverage run `which djangocms-helper` djangocms_blog test --cms --nose
|
2014-04-19 17:18:51 +00:00
|
|
|
coverage report -m
|
|
|
|
|
|
|
|
release: clean
|
2015-03-22 12:01:19 +00:00
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
twine upload dist/*
|
2014-04-19 17:18:51 +00:00
|
|
|
|
|
|
|
sdist: clean
|
|
|
|
python setup.py sdist
|
2014-06-11 19:25:10 +00:00
|
|
|
ls -l dist
|