12345678910111213141516171819202122232425 |
- run:
- python app.py
- run_webui:
- @cd webui && npm run serve
- install:
- @echo "INSTALL MISSING!"
- run_tests:
- python -m unittest discover test/
- run_coverage:
- @coverage run -m unittest discover test/
- coverage html
- coverage report -m
- run_pylint:
- pylint --fail-under=9.5 \
- --disable=duplicate-code \
- --disable=missing-module-docstring \
- --disable=too-many-instance-attributes \
- --extension-pkg-whitelist=cv2 \
- --module-rgx='^[A-Za-z0-9]+$' --class-rgx='^[A-Za-z0-9]+$' \
- app.py pycs
|