LoadScope scheduler: Sort scopes by number of tests to assign biggest scopes first (#778)

Follow up to # 632.

---------

Co-authored-by: Jörg Kohlsdorf <joerg@cornershopapp.com>
This commit is contained in:
Henk-Jaap Wagenaar
2023-11-21 14:32:29 +00:00
committed by GitHub
parent f36ea25cb5
commit 3fe877bc6d
3 changed files with 25 additions and 1 deletions

View File

@@ -1232,6 +1232,22 @@ class TestLoadScope:
"test_a.py::TestB", result.outlines
) in ({"gw0": 10}, {"gw1": 10})
def test_workqueue_ordered_by_size(self, pytester: pytest.Pytester) -> None:
test_file = """
import pytest
@pytest.mark.parametrize('i', range({}))
def test(i):
pass
"""
pytester.makepyfile(test_a=test_file.format(10), test_b=test_file.format(20))
result = pytester.runpytest("-n2", "--dist=loadscope", "-v")
assert get_workers_and_test_count_by_prefix(
"test_a.py::test", result.outlines
) == {"gw1": 10}
assert get_workers_and_test_count_by_prefix(
"test_b.py::test", result.outlines
) == {"gw0": 20}
def test_module_single_start(self, pytester: pytest.Pytester) -> None:
"""Fix test suite never finishing in case all workers start with a single test (#277)."""
test_file1 = """