From bbed776146dc2a7f5ffe9c49e712c817ec4e111b Mon Sep 17 00:00:00 2001 From: Alexander Tikhonov Date: Sun, 17 Mar 2024 17:50:48 +0300 Subject: [PATCH] Add first version of justfile --- justfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 justfile 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