diff options
Diffstat (limited to 'doc/DEV.md')
-rw-r--r-- | doc/DEV.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/DEV.md b/doc/DEV.md new file mode 100644 index 0000000..6f3eec4 --- /dev/null +++ b/doc/DEV.md @@ -0,0 +1,16 @@ +# Ohjeita kehitykseen +## Riippuvuuksien asennus: +`PYTHON_KEYRING_BACKEND=keyring.backends.fail.Keyring poetry install --no-root` + +## Aja pytest: +`poetry run python3 -m pytest` + +## Generoi haarakattavuusraportti: +`poetry run python3 -m coverage run --branch -m pytest -v && poetry run python3 -m coverage html && firefox htmlcov/index.html` + +## Linttaus: +`poetry run python3 -m pylint -v .` + +## Kaikki samassa: +`poetry run python3 -m coverage run --branch -m pytest -v && poetry run python3 -m coverage html && firefox htmlcov/index.html && poetry run python3 -m pylint -v .` + |