We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2554674 commit ab2185aCopy full SHA for ab2185a
2 files changed
justfile
@@ -11,6 +11,10 @@ _default:
11
fetch:
12
curl https://raw.githubusercontent.com/adamghill/dotfiles/master/just/justfile > adamghill.justfile
13
14
+# Run coverage on the code
15
+coverage *ARGS='':
16
+ -uv run --all-extras pytest --cov=. --ignore=benchmarks {{ ARGS }}
17
+
18
serve:
19
uv run python3 example/manage.py runserver 0:8789
20
pyproject.toml
@@ -157,6 +157,7 @@ addopts = [
157
"--failed-first",
158
"-p no:warnings",
159
"--no-migrations",
160
+ "--ignore=benchmarks",
161
]
162
testpaths = [
163
"tests"
0 commit comments