2023-01-17 10:55:09 +01:00

14 lines
305 B
Python

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
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} "