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 4d4f160 commit 70a52ecCopy full SHA for 70a52ec
eth/tools/fixtures/generation.py
@@ -25,7 +25,11 @@ def idfn(fixture_params: Iterable[Any]) -> str:
25
"""
26
Function for pytest to produce uniform names for fixtures.
27
28
- return ":".join(str(item) for item in fixture_params)
+ try:
29
+ return ":".join(str(item) for item in fixture_params)
30
+ except TypeError:
31
+ # In case params are not iterable for some reason...
32
+ return str(fixture_params)
33
34
35
def get_fixtures_file_hash(all_fixture_paths: Iterable[str]) -> str:
0 commit comments