-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (35 loc) · 737 Bytes
/
Copy pathMakefile
File metadata and controls
50 lines (35 loc) · 737 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
47
48
49
50
PYTHONPATH := src
export PYTHONPATH
clean:
rm -rf dist build __pycache__ *.egg-info
format:
uv run ruff format src tests
lint:
uv run ruff format --check --diff src tests
uv run ruff check src tests
uv run mypy src
publish: clean
uv build
uv publish
test-publish: clean
uv build
uv publish --publish-url https://test.pypi.org/legacy/
tests:
uv run pytest
tests-parallel:
uv run pytest -n auto
unit-tests:
uv run pytest -m "not integration" --doctest-modules
int-tests:
uv run pytest -m integration
update-localnet:
agave-install update
start-localnet:
./bin/localnet.sh up
stop-localnet:
./bin/localnet.sh down
serve:
uv run mkdocs serve
build-docs:
uv run mkdocs build --strict
.PHONY: $(MAKECMDGOALS)