From 64a9b24ffaf54f6be40ace097d11b6de4a1450dd Mon Sep 17 00:00:00 2001 From: Santiago Soler Date: Tue, 25 Jun 2024 12:02:55 -0700 Subject: [PATCH] Include src in test target to run doctests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fb596ac9..60715fb2 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Build, package, test, and clean PROJECT=pooch -TESTS=tests +TESTS=tests src/$(PROJECT) PYTEST_ARGS=--cov-config=.coveragerc --cov-report=term-missing --cov=$(PROJECT) --doctest-modules -v --pyargs LINT_FILES=$(PROJECT) CHECK_STYLE=src/$(PROJECT) doc