Makefile 539 B

12345678910111213141516171819202122232425
  1. run:
  2. python app.py
  3. run_webui:
  4. @cd webui && npm run serve
  5. install:
  6. @echo "INSTALL MISSING!"
  7. run_tests:
  8. python -m unittest discover test/
  9. run_coverage:
  10. @coverage run -m unittest discover test/
  11. coverage html
  12. coverage report -m
  13. run_pylint:
  14. pylint --fail-under=9.5 \
  15. --disable=duplicate-code \
  16. --disable=missing-module-docstring \
  17. --disable=too-many-instance-attributes \
  18. --extension-pkg-whitelist=cv2 \
  19. --module-rgx='^[A-Za-z0-9]+$' --class-rgx='^[A-Za-z0-9]+$' \
  20. app.py pycs