olmocr/Makefile

18 lines
339 B
Makefile
Raw Permalink Normal View History

2024-09-17 07:53:43 -07:00
.PHONY : docs
docs :
rm -rf docs/build/
2025-01-27 18:41:13 +00:00
sphinx-autobuild -b html --watch olmocr/ docs/source/ docs/build/
2024-09-17 07:53:43 -07:00
.PHONY : run-checks
run-checks :
isort --check .
black --check .
ruff check .
mypy .
2025-01-27 18:41:13 +00:00
CUDA_VISIBLE_DEVICES='' pytest -v --color=yes --doctest-modules tests/ olmocr/
2024-09-17 07:53:43 -07:00
.PHONY : build
build :
rm -rf *.egg-info/
python -m build