Skip to content

Commit 2675d2d

Browse files
committed
Update make test command
1 parent bd5954e commit 2675d2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ ruff-fixes: ## fix the code using ruff
3939
uv run ruff format src tests scripts docs
4040

4141
.PHONY: test
42-
test: ## run the tests
43-
uv run pytest src tests -r a -v --doctest-modules --doctest-report ndiff --cov=src
42+
test: ## run the tests (re-installs the package every time so you might want to run by hand if you're certain that step isn't needed)
43+
uv run --no-editable --reinstall-package example-fgen-basic pytest tests src tests -r a -v --doctest-modules --doctest-report ndiff --cov=src
4444

4545
# Note on code coverage and testing:
4646
# You must specify cov=src.

0 commit comments

Comments
 (0)