Makefile 289 B

12345678910111213141516171819
  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 tests/
  9. run_coverage:
  10. @coverage run -m unittest discover tests/
  11. coverage html
  12. coverage report -m
  13. run_pylint:
  14. pylint --rcfile=.pylintrc app.py pycs