From 9d4bd6eebd6e45331cd19c16e6114f1a4cd777fd Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Fri, 17 Jan 2025 01:53:50 +0100 Subject: [PATCH] pytest: only check tests/ and worlds/ (#4500) This allows having failing tests in CI in worlds_disabled and allows moving worlds there to disable tests. --- pytest.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pytest.ini b/pytest.ini index 33e0bab8..f16ab34e 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,3 +2,6 @@ python_files = test_*.py Test*.py # TODO: remove Test* once all worlds have been ported python_classes = Test python_functions = test +testpaths = + tests + worlds