1
0
Fork 0
sqlglot/Makefile
Daniel Baumann 0c79f8b507
Merging upstream version 10.4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 15:01:55 +01:00

24 lines
329 B
Makefile

.PHONY: install install-dev install-pre-commit test style check docs docs-serve
install:
pip install -e .
install-dev:
pip install -e ".[dev]"
install-pre-commit:
pre-commit install
test:
python -m unittest
style:
pre-commit run --all-files
check: style test
docs:
pdoc/cli.py -o pdoc/docs
docs-serve:
pdoc/cli.py