Makefile 417 B

1234567891011121314151617181920
  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. @PYTHONWARNINGS="ignore::ResourceWarning" coverage run -m unittest discover tests/
  11. @coverage run --concurrency=eventlet --append -m unittest tests.client.pipeline_tests
  12. coverage html
  13. coverage report -m
  14. run_pylint:
  15. pylint --rcfile=.pylintrc app.py pycs