10 lines
224 B
Python
10 lines
224 B
Python
pytest_plugins = [
|
|
"test.fixtures.table_parsing",
|
|
"test.fixtures.figure_detection",
|
|
"test.fixtures.page_generation.page",
|
|
]
|
|
|
|
|
|
def pytest_make_parametrize_id(config, val, argname):
|
|
return f" {argname}={val} "
|