Skip to content

Commit 6bbb3d7

Browse files
committed
update justfile
1 parent eb03e19 commit 6bbb3d7

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

justfile

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Run with `just all`
2-
all: fmt check test
2+
all: fmt check coverage
3+
4+
setup:
5+
uv venv
6+
7+
install:
8+
uv pip install -e ".[test]"
39

410
fmt:
511
ruff format
@@ -10,8 +16,6 @@ check:
1016
test:
1117
pytest
1218

13-
setup:
14-
uv venv
15-
16-
install:
17-
uv pip install -e ".[test]"
19+
coverage:
20+
coverage run -m pytest
21+
coverage report

0 commit comments

Comments
 (0)