14 lines
305 B
Python
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} "
|