Makefile 417 B

12345678910111213141516171819202122232425262728
  1. PEP8=pep8
  2. pep8:
  3. (find . -name "*.py" | xargs pep8 | perl -nle'\
  4. print; $$a=1 if $$_}{exit($$a)')
  5. ghdocs:
  6. contrib/doc2ghpages
  7. autodoc:
  8. contrib/doc4allmods celery
  9. bump:
  10. contrib/bump -c celery
  11. coverage:
  12. (cd testproj; python manage.py test --figleaf)
  13. test:
  14. (cd testproj; python manage.py test)
  15. releaseok: pep8 autodoc test
  16. removepyc:
  17. find . -name "*.pyc" | xargs rm
  18. release: releaseok removepyc ghdocs