1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
default: build lint
build:
pip install -r requirements-dev.txt
pip install -e .
lint:
ruff check mashumaro
black --check mashumaro tests
mypy mashumaro
codespell mashumaro tests README.md .github/*.md
format:
black mashumaro tests
isort mashumaro tests
test:
pytest tests
test-with-coverage:
pytest --cov . tests
benchmark:
./benchmark/run.sh
clean:
rm -rf benchmark/data/results
rm -f benchmark/data/spec_dump.json
rm -f benchmark/data/spec_load.json
|