File size: 1,044 Bytes
d942a9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "dependencies": {
        "npm-run-all": "^4.1.5"
    },
    "scripts": {
        "start": "pyright && pytest && yarn style",
        "test": "nodemon -w tests -w radio_embed -x pytest tests",
        "pyright": "nodemon -w radio_embed -w .venv -e .py -x pyright radio_embed tests",
        "pytest": "nodemon -w tests -w radio_embed -e .py -x pytest tests radio_embed",
        "style": "nodemon -w radio_embed -w tests -x \"black tests radio_embed && python -m flake8\"",
        "docstyle": "nodemon -w radio_embed -w tests -x pydocstyle --convention=google tests radio_embed",
        "pylint": "nodemon -w radio_embed -e .py -x pylint radio_embed",
        "test:radio_embed": "nodemon -w tests -e .py -x pytest -k radio_embed tests",
        "publish": "poetry build && poetry publish",
        "black": "black tests radio_embed",
        "flake8": "flake8 tests radio_embed",
        "pflake8": "pflake8 tests radio_embed",
        "pep257": "pep257 tests radio_embed",
        "final": "run-s docstyle black flake8 pytest"
    }
}