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 4486a9f commit 1b9f92dCopy full SHA for 1b9f92d
testing/acceptance_test.py
@@ -1513,15 +1513,17 @@ def test_c(self):
1513
""" + ((_test_content * 4) % ("A", "B", "C", "D"))
1514
1515
@pytest.mark.parametrize(
1516
- "scope", ["each", "load", "loadscope", "loadfile", "worksteal", "no"]
+ "scope", ["each", "isoscope", "load", "loadscope", "loadfile",
1517
+ "worksteal", "no"]
1518
)
1519
def test_single_file(self, pytester: pytest.Pytester, scope: str) -> None:
1520
pytester.makepyfile(test_a=self.test_file1)
1521
result = pytester.runpytest("-n2", "--dist=%s" % scope, "-v")
1522
result.assert_outcomes(passed=(12 if scope != "each" else 12 * 2))
1523
1524
1525
1526
1527
1528
def test_multi_file(self, pytester: pytest.Pytester, scope: str) -> None:
1529
pytester.makepyfile(
0 commit comments