From 5e2702090c96959fc963aa72170fb861aaf656b1 Mon Sep 17 00:00:00 2001 From: Doug Hoskisson Date: Sun, 27 Jul 2025 18:10:06 -0700 Subject: [PATCH] Tests: only get `__init__.py` tests from test directories (#5135) --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 4469a7c3..f050d58b 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] -python_files = test_*.py Test*.py __init__.py # TODO: remove Test* once all worlds have been ported +python_files = test_*.py Test*.py **/test*/**/__init__.py # TODO: remove Test* once all worlds have been ported python_classes = Test python_functions = test testpaths =