-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJustfile
46 lines (33 loc) · 1.01 KB
/
Justfile
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
set dotenv-load := true
@_default:
just --list
download:
python -m download
# ----------------------------------------------------------------------
# DEPENDENCIES
# ----------------------------------------------------------------------
bootstrap:
@just pup
python -m uv pip install --editable '.[dev]'
pup:
python -m pip install --upgrade pip uv
# ----------------------------------------------------------------------
# TESTING/TYPES
# ----------------------------------------------------------------------
test *ARGS:
python -m nox --session "test" -- "{{ ARGS }}"
testall *ARGS:
python -m nox --session "tests" -- "{{ ARGS }}"
coverage:
python -m nox --session "coverage"
types:
python -m nox --session "mypy"
# ----------------------------------------------------------------------
# UTILS
# ----------------------------------------------------------------------
# format justfile
fmt:
just --fmt --unstable
# run pre-commit on all files
lint:
python -m nox --session "lint"