-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
46 lines (36 loc) · 745 Bytes
/
Copy pathMakefile
File metadata and controls
46 lines (36 loc) · 745 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
41
42
43
44
45
46
.PHONY: check
check: ruff typecheck test
.PHONY: gen-proto
gen-proto:
buf generate
.PHONY: ruff-python
ruff:
uv run ruff check
uv run ruff format
.PHONY: pyright
typecheck:
cd declaredata_fuse && uv run pyright
cd bench && uv run pyright
.PHONY: test
test:
cd declaredata_fuse && uv run pytest
.PHONY: run-bench
run-bench:
mage runbench
.PHONY: .run-bench-verbose
run-bench-verbose:
uv run python bench/src/bench/main.py --verbose true
cd bench && uv run pytest
.PHONY: pull-fuse
pull-fuse:
mage pullfuse
.PHONY: run-fuse
run-fuse:
mage runfuse
.PHONY: build-release
build-release:
rm -rf ./dist
uv build --project declaredata_fuse --sdist --wheel
.PHONY: publish-release
publish-release: build-release
uv publish dist/*