1
0
Fork 0
sqlglot/Makefile
Daniel Baumann fbce006e29
Adding upstream version 17.2.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-13 20:42:40 +01:00

27 lines
401 B
Makefile

.PHONY: install install-dev install-pre-commit test unit 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
unit:
SKIP_INTEGRATION=1 python -m unittest
style:
pre-commit run --all-files
check: style test
docs:
python pdoc/cli.py -o docs
docs-serve:
python pdoc/cli.py --port 8002