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