From ed2b75534e940599e19742ed6847cb250de3df81 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 4 Jul 2021 16:17:58 +0200 Subject: [PATCH] Exclude server/client tests when running selftests. --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 1b7e5c4..af3e5dc 100644 --- a/conftest.py +++ b/conftest.py @@ -62,7 +62,7 @@ def pytest_collection_modifyitems(session, config, items): # First, check if we should run server tests or client tests server_tests = client_tests = False if _IrcTestCase.controllerClass is None: - return + pass elif issubclass(_IrcTestCase.controllerClass, BaseServerController): server_tests = True elif issubclass(_IrcTestCase.controllerClass, BaseClientController):