From 0994afa25bc393b3d68dbaffc2a79b9f9afd8b74 Mon Sep 17 00:00:00 2001 From: Ixrec Date: Tue, 13 May 2025 08:59:41 +0100 Subject: [PATCH] Tests: actually run tests in __init__.py files (#4969) * demonstrate our pytest/CI configuration missing a __init__ test failure * tell pytest/CI to run tests in __init__.py files * revert the demonstration test failure --------- Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com> --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index cd8fd8df..4469a7c3 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,5 +1,5 @@ [pytest] -python_files = test_*.py Test*.py # TODO: remove Test* once all worlds have been ported +python_files = test_*.py Test*.py __init__.py # TODO: remove Test* once all worlds have been ported python_classes = Test python_functions = test testpaths =