Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 22, 2024
1 parent 95786b4 commit f87e521
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions testing/acceptance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1513,17 +1513,17 @@ def test_c(self):
""" + ((_test_content * 4) % ("A", "B", "C", "D"))

@pytest.mark.parametrize(
"scope", ["each", "isoscope", "load", "loadscope", "loadfile",
"worksteal", "no"]
"scope",
["each", "isoscope", "load", "loadscope", "loadfile", "worksteal", "no"],
)
def test_single_file(self, pytester: pytest.Pytester, scope: str) -> None:
pytester.makepyfile(test_a=self.test_file1)
result = pytester.runpytest("-n2", "--dist=%s" % scope, "-v")
result.assert_outcomes(passed=(12 if scope != "each" else 12 * 2))

@pytest.mark.parametrize(
"scope", ["each", "isoscope", "load", "loadscope", "loadfile",
"worksteal", "no"]
"scope",
["each", "isoscope", "load", "loadscope", "loadfile", "worksteal", "no"],
)
def test_multi_file(self, pytester: pytest.Pytester, scope: str) -> None:
pytester.makepyfile(
Expand Down

0 comments on commit f87e521

Please sign in to comment.