@@ -1513,17 +1513,17 @@ def test_c(self):
15131513 """ + ((_test_content * 4 ) % ("A" , "B" , "C" , "D" ))
15141514
15151515 @pytest .mark .parametrize (
1516- "scope" , [ "each" , "isoscope" , "load" , "loadscope" , "loadfile" ,
1517- "worksteal" , "no" ]
1516+ "scope" ,
1517+ [ "each" , "isoscope" , "load" , "loadscope" , "loadfile" , "worksteal" , "no" ],
15181518 )
15191519 def test_single_file (self , pytester : pytest .Pytester , scope : str ) -> None :
15201520 pytester .makepyfile (test_a = self .test_file1 )
15211521 result = pytester .runpytest ("-n2" , "--dist=%s" % scope , "-v" )
15221522 result .assert_outcomes (passed = (12 if scope != "each" else 12 * 2 ))
15231523
15241524 @pytest .mark .parametrize (
1525- "scope" , [ "each" , "isoscope" , "load" , "loadscope" , "loadfile" ,
1526- "worksteal" , "no" ]
1525+ "scope" ,
1526+ [ "each" , "isoscope" , "load" , "loadscope" , "loadfile" , "worksteal" , "no" ],
15271527 )
15281528 def test_multi_file (self , pytester : pytest .Pytester , scope : str ) -> None :
15291529 pytester .makepyfile (
0 commit comments