From a1dc91a117a68820d95d6bbd9cd962bcd105e525 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Mon, 30 Sep 2024 18:02:57 -0500 Subject: [PATCH] Testing: Don't split test suite for remote client tests --- conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 46d649eb933..8fba8c85550 100644 --- a/conftest.py +++ b/conftest.py @@ -74,7 +74,9 @@ def pytest_collection_modifyitems(config, items): # This provides a more balanced partitioning of our test suite (in terms of # necessary time to run it) between the slow and fast slots we have on CIs. slow_items = [] - if os.environ.get('CI'): + if os.environ.get("CI") and not os.environ.get( + "SPYDER_TEST_REMOTE_CLIENT" + ): slow_items = [ item for item in items if 'test_mainwindow' in item.nodeid ]