diff --git a/justfile b/justfile new file mode 100644 index 0000000..4d915e0 --- /dev/null +++ b/justfile @@ -0,0 +1,18 @@ +build: + pip install -r requirements-dev.txt + pip install -e . + +lint: + ruff mashumaro + black --check mashumaro + mypy mashumaro + codespell mashumaro tests README.md + +format: + black mashumaro + +test: + pytest tests + +test-with-coverage: + pytest --cov . tests