We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e56e0 commit fc6e6ceCopy full SHA for fc6e6ce
testing/acceptance_test.py
@@ -1278,7 +1278,9 @@ def test(i):
1278
"""
1279
pytester.makepyfile(test_a=test_file)
1280
result = pytester.runpytest("-n2", "--dist=isoscope", "-v")
1281
- counts_by_worker = get_workers_and_test_count_by_prefix("test_a.py::test", result.outlines)
+ counts_by_worker = get_workers_and_test_count_by_prefix(
1282
+ "test_a.py::test", result.outlines
1283
+ )
1284
assert counts_by_worker["gw0"] in (2, 3)
1285
assert counts_by_worker["gw1"] in (2, 3)
1286
assert counts_by_worker["gw0"] + counts_by_worker["gw1"] == 5
0 commit comments