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