1234567891011121314151617181920 |
- run:
- python app.py
- run_webui:
- @cd webui && npm run serve
- install:
- @echo "INSTALL MISSING!"
- run_tests:
- python -m unittest discover tests/
- run_coverage:
- @PYTHONWARNINGS="ignore::ResourceWarning" coverage run -m unittest discover tests/
- @coverage run --concurrency=eventlet --append -m unittest tests.client.pipeline_tests
- coverage html
- coverage report -m
- run_pylint:
- pylint --rcfile=.pylintrc app.py pycs
|