[pre-commit.ci] pre-commit autoupdate (#8201)

* [pre-commit.ci] pre-commit autoupdate

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* manual fixes after configuration update

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Anthony Sottile <asottile@umich.edu>
This commit is contained in:
pre-commit-ci[bot]
2020-12-30 11:56:09 +02:00
committed by GitHub
parent 7751904875
commit ee03e31831
45 changed files with 280 additions and 121 deletions

View File

@@ -514,7 +514,8 @@ class TestApprox:
)
def test_expected_value_type_error(self, x, name):
with pytest.raises(
TypeError, match=fr"pytest.approx\(\) does not support nested {name}:",
TypeError,
match=fr"pytest.approx\(\) does not support nested {name}:",
):
approx(x)

View File

@@ -514,7 +514,10 @@ class TestMetafunc:
]
for config, expected in values:
result = idmaker(
("a",), [pytest.param("string")], idfn=lambda _: "ação", config=config,
("a",),
[pytest.param("string")],
idfn=lambda _: "ação",
config=config,
)
assert result == [expected]
@@ -546,7 +549,10 @@ class TestMetafunc:
]
for config, expected in values:
result = idmaker(
("a",), [pytest.param("string")], ids=["ação"], config=config,
("a",),
[pytest.param("string")],
ids=["ação"],
config=config,
)
assert result == [expected]