Makefile 465 B

1234567891011121314151617181920212223242526272829
  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. [ -d testproj/temp ] || mkdir -p testproj/temp
  13. (cd testproj; python manage.py test --figleaf)
  14. test:
  15. (cd testproj; python manage.py test)
  16. releaseok: pep8 autodoc test
  17. removepyc:
  18. find . -name "*.pyc" | xargs rm
  19. release: releaseok removepyc ghdocs