-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJustfile
More file actions
43 lines (31 loc) · 622 Bytes
/
Justfile
File metadata and controls
43 lines (31 loc) · 622 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
set dotenv-load := true
set unstable := true
mod docs ".just/documentation.just"
[private]
default:
@just --list
[private]
fmt:
@just --fmt
@just docs fmt
[private]
nox SESSION *ARGS:
uv run nox --session "{{ SESSION }}" -- "{{ ARGS }}"
bootstrap:
uv python install
uv sync --frozen
coverage:
@just nox coverage
demo:
@just nox demo
lint:
uv run --with pre-commit-uv pre-commit run --all-files
just fmt
lock *ARGS:
uv lock {{ ARGS }}
test *ARGS:
@just nox test {{ ARGS }}
testall *ARGS:
@just nox tests {{ ARGS }}
types *ARGS:
@just nox types {{ ARGS }}