1
0
Fork 0
sqlglot/Makefile

25 lines
343 B
Makefile
Raw Permalink Normal View History

.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:
python pdoc/cli.py -o pdoc/docs
docs-serve:
python pdoc/cli.py