We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd5954e commit 2675d2dCopy full SHA for 2675d2d
1 file changed
Makefile
@@ -39,8 +39,8 @@ ruff-fixes: ## fix the code using ruff
39
uv run ruff format src tests scripts docs
40
41
.PHONY: test
42
-test: ## run the tests
43
- uv run pytest src tests -r a -v --doctest-modules --doctest-report ndiff --cov=src
+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)
+ uv run --no-editable --reinstall-package example-fgen-basic pytest tests src tests -r a -v --doctest-modules --doctest-report ndiff --cov=src
44
45
# Note on code coverage and testing:
46
# You must specify cov=src.
0 commit comments