Skip to content

Commit

Permalink
Testing: Don't split test suite for remote client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Sep 30, 2024
1 parent af4a6ec commit a1dc91a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
Expand Down

0 comments on commit a1dc91a

Please sign in to comment.