-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (29 loc) · 790 Bytes
/
Makefile
File metadata and controls
40 lines (29 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
lock:
uv lock --upgrade
install-dev:
uv sync --all-extras
install-pre-commit:
pre-commit install
slow-test:
pytest -n auto tests
fast-test:
pytest -n auto tests/unit
local-test:
pytest -n auto -m "fast or local" --reruns 5
%-test:
pytest -n auto -m "${*}"
style:
pre-commit run --all-files
docs-serve:
mkdocs serve
stubs:
stubgen sqlframe/bigquery/functions.py --output ./ --inspect-mode
stubgen sqlframe/duckdb/functions.py --output ./ --inspect-mode
stubgen sqlframe/postgres/functions.py --output ./ --inspect-mode
stubgen sqlframe/snowflake/functions.py --output ./ --inspect-mode
stubgen sqlframe/databricks/functions.py --output ./ --inspect-mode
stubgen sqlframe/spark/functions.py --output ./ --inspect-mode
package:
uv build
publish: package
uv publish