| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | PEP8=pep8pep8:	(find . -name "*.py" | xargs pep8 | perl -nle'\		print; $$a=1 if $$_}{exit($$a)')cycomplex:	find celery -type f -name "*.py" | xargs pygenie.py complexityghdocs:	contrib/doc2ghpagesautodoc:	contrib/doc4allmods celeryflakes:	find . -name "*.py" | xargs pyflakesclean_readme:	rm -f README.rst READMEreadme: clean_readme	python contrib/sphinx-to-rst.py docs/introduction.rst > README.rst	ln -s README.rst READMEbump:	contrib/bump -c celerycover:	(cd testproj; python manage.py test --coverage)coverage: coverquickcover:	(cd testproj; env QUICKTEST=1 SKIP_RLIMITS=1 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 gitcleanremovepyc:	find . -name "*.pyc" | xargs rmrelease: releaseok ghdocs removepycgitclean: removepyc	git clean -xdngitcleanforce: removepyc	git clean -xdf
 |