From 3bb1086ea6ed9c82bf5f99c9e91213a7abef6620 Mon Sep 17 00:00:00 2001 From: William Pietri Date: Wed, 14 Feb 2024 17:29:19 -0800 Subject: [PATCH] Not sure how this ever worked before, but explicitly telling pytest to look in tests for code. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 521460b1..6f213a31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ addopts = [ "--import-mode=importlib", ] pythonpath = [ - "src" + "src", "tests" ] [build-system] requires = ["poetry-core"]