Run no-default-groups smoke test from Justfile

Refs #842

I had to add --isolated because otherwise this test would pass if a .venv
folder already existed with the dev dependencies installed in it.
This commit is contained in:
Simon Willison 2026-08-13 17:01:47 -07:00
commit 56dd09702f

View file

@ -2,9 +2,12 @@
@default: test lint
# Run pytest with supplied options
@test *options:
@test *options: test-no-dev-dependencies
uv run pytest {{options}}
@test-no-dev-dependencies:
uv run --isolated --no-default-groups sqlite-utils --help > /dev/null
@run *options:
uv run -- {{options}}