-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile
More file actions
46 lines (31 loc) · 774 Bytes
/
Copy pathjustfile
File metadata and controls
46 lines (31 loc) · 774 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
default:
just --list
lint:
uv run pre-commit run --all-files
build:
uv build
test:
uv run pytest
test-ci:
uv run pytest --junitxml=pytest-report.xml
test-functional:
uv run pytest tests/functional -v -m functional
test-functional-ci:
uv run pytest tests/functional --junitxml=pytest-functional-report.xml -v -m functional
check-commit: lint test
push-to-pypi:
uv publish
publish-ci:
rm -rf dist
uv build
uv publish
clean-before-publish:
rm -rf dist
publish: lint test clean-before-publish build push-to-pypi
docs-clean:
rm -rf docs/build
docs-md:
uv run sphinx-build -M markdown docs/source docs/build
docs-html:
uv run sphinx-build -M html docs/source docs/build
docs: docs-clean docs-md docs-html