Makefile 335 B

1234567891011121314151617181920212223
  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