File: justfile

package info (click to toggle)
python-mashumaro 3.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,408 kB
  • sloc: python: 19,981; sh: 16; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 515 bytes parent folder | download | duplicates (2)
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