Skip to content

Commit

Permalink
Merge bbed776 into f7a70e7
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatal1ty committed Mar 17, 2024
2 parents f7a70e7 + bbed776 commit 826a436
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 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

0 comments on commit 826a436

Please sign in to comment.