lingbot-vla / Makefile
bazaar-research's picture
Upload folder using huggingface_hub
fb11af9 verified
.PHONY: build commit quality style test
check_dirs := tasks tests lingbot docs setup.py
build:
python3 setup.py sdist bdist_wheel
commit:
pre-commit install
pre-commit run --all-files
quality:
ruff check $(check_dirs)
ruff format --check $(check_dirs)
style:
ruff check $(check_dirs) --fix
ruff format $(check_dirs)
test:
pytest tests/