12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- PEP8=pep8
- pep8:
- (find . -name "*.py" | xargs pep8 | perl -nle'\
- print; $$a=1 if $$_}{exit($$a)')
- cycomplex:
- find celery -type f -name "*.py" | xargs pygenie.py complexity
- ghdocs:
- contrib/doc2ghpages
- autodoc:
- contrib/doc4allmods celery
- flakes:
- find . -name "*.py" | xargs pyflakes
- clean_readme:
- rm -f README.rst README
- readme: clean_readme
- python contrib/sphinx-to-rst.py docs/introduction.rst > README.rst
- ln -s README.rst README
- bump:
- contrib/bump -c celery
- coverage2:
- [ -d testproj/temp ] || mkdir -p testproj/temp
- (cd testproj; python manage.py test --figleaf)
- coverage:
- [ -d testproj/temp ] || mkdir -p testproj/temp
- (cd testproj; python manage.py test --coverage)
- test:
- (cd testproj; python manage.py test)
- quicktest:
- (cd testproj; SKIP_RLIMITS=1 python manage.py test)
- testverbose:
- (cd testproj; python manage.py test --verbosity=2)
- releaseok: pep8 autodoc test gitclean
- removepyc:
- find . -name "*.pyc" | xargs rm
- release: releaseok ghdocs removepyc
- gitclean: removepyc
- git clean -xdn
- gitcleanforce: removepyc
- git clean -xdf
|