Makefile 538 B

12345678910111213141516171819202122
  1. .PHONY: clean
  2. help:
  3. @echo " clean remove unwanted stuff"
  4. @echo " install install testend"
  5. @echo " tests run the testsuite"
  6. @echo " run run the development server"
  7. clean:
  8. find . -name '*.pyc' -exec rm -f {} +
  9. find . -name '*.pyo' -exec rm -f {} +
  10. find . -name '*~' -exec rm -f {} +
  11. find . -name '__pycache__' -exec rm -rf {} +
  12. tests:
  13. py.test --cov=flaskbb --cov-report=term-missing tests
  14. run:
  15. python manage.py runserver
  16. install:
  17. python manage.py install