Makefile 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .PHONY: clean-pyc clean-build docs clean
  2. NOSE_FLAGS=-s --verbosity=2
  3. COVER_CONFIG_FLAGS=--with-coverage --cover-package=rest_framework_bulk --cover-erase
  4. COVER_REPORT_FLAGS=--cover-html --cover-html-dir=htmlcov
  5. COVER_FLAGS=${COVER_CONFIG_FLAGS} ${COVER_REPORT_FLAGS}
  6. help:
  7. @echo "install - install all requirements including for testing"
  8. @echo "clean - remove all artifacts"
  9. @echo "clean-build - remove build artifacts"
  10. @echo "clean-pyc - remove Python file artifacts"
  11. @echo "clean-test - remove test and coverage artifacts"
  12. @echo "clean-test-all - remove all test-related artifacts including tox"
  13. @echo "lint - check style with flake8"
  14. @echo "test - run tests quickly with the default Python"
  15. @echo "test-coverage - run tests with coverage report"
  16. @echo "test-all - run tests on every Python version with tox"
  17. @echo "check - run all necessary steps to check validity of project"
  18. @echo "release - package and upload a release"
  19. @echo "dist - package"
  20. install:
  21. pip install -r requirements-dev.txt
  22. clean: clean-build clean-pyc clean-test-all
  23. clean-build:
  24. @rm -rf build/
  25. @rm -rf dist/
  26. @rm -rf *.egg-info
  27. clean-pyc:
  28. -@find . -name '*.pyc' -follow -print0 | xargs -0 rm -f
  29. -@find . -name '*.pyo' -follow -print0 | xargs -0 rm -f
  30. -@find . -name '__pycache__' -type d -follow -print0 | xargs -0 rm -rf
  31. clean-test:
  32. rm -rf .coverage coverage*
  33. rm -rf tests/.coverage test/coverage*
  34. rm -rf htmlcov/
  35. clean-test-all: clean-test
  36. rm -rf .tox/
  37. lint:
  38. flake8 rest_framework_bulk
  39. test:
  40. python tests/manage.py test ${NOSE_FLAGS}
  41. test-coverage:
  42. python tests/manage.py test ${NOSE_FLAGS} ${COVER_FLAGS}
  43. test-all:
  44. tox
  45. check: clean-build clean-pyc clean-test lint test
  46. release: clean
  47. python setup.py sdist upload
  48. dist: clean
  49. python setup.py sdist
  50. ls -l dist