1
0
Fork 0
textual-fastdatatable/Makefile
Daniel Baumann 148efc9122
Adding upstream version 0.12.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-24 10:57:24 +01:00

24 lines
378 B
Makefile

.PHONY: check
check:
ruff format .
pytest
ruff check . --fix
mypy
.PHONY: lint
lint:
ruff format .
ruff check . --fix
mypy
.PHONY: serve
serve:
textual run --dev -c python -m textual_fastdatatable
.PHONY: profile
profile:
pyinstrument -r html -o profile.html "src/scripts/run_arrow_wide.py"
.PHONY: benchmark
benchmark:
python src/scripts/benchmark.py > /dev/null