diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | pytest.ini | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,7 @@ help: .PHONY: test test: ## Run all tests and lints pipenv run pytest - pipenv run mypy *.py chocula/*.py --ignore-missing-imports + pipenv run mypy *.py chocula/*.py chocula/*/*.py --ignore-missing-imports .PHONY: build build: src/*.rs src/bin/*.rs @@ -1,5 +1,7 @@ [pytest] +norecursedirs = extra old + # search for 'test_*' functions in all python files, not just under tests python_files = test_*.py tests/*.py chocula/*.py bin/*.py |