Spaces:
Running
Running
{ | |
"dependencies": { | |
"npm-run-all": "^4.1.5" | |
}, | |
"scripts": { | |
"start": "pyright && pytest && yarn style", | |
"test": "nodemon -w tests -w mlbee -x pytest tests", | |
"pyright": "nodemon -w mlbee -w .venv -e .py -x pyright mlbee tests", | |
"pytest": "nodemon -w tests -w mlbee -e .py -x pytest tests mlbee", | |
"style": "nodemon -w mlbee -w tests -x \"black tests mlbee && python -m flake8\"", | |
"docstyle": "nodemon -w mlbee -w tests -x pydocstyle --convention=google tests mlbee", | |
"pylint": "nodemon -w mlbee -e .py -x pylint mlbee", | |
"test:mlbee": "nodemon -w tests -e .py -x pytest -k mlbee tests", | |
"publish": "poetry build && poetry publish", | |
"black": "black tests mlbee", | |
"flake8": "flake8 tests mlbee", | |
"pflake8": "pflake8 tests mlbee", | |
"pep257": "pep257 tests mlbee", | |
"final": "run-s docstyle black flake8 pytest" | |
} | |
} |