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