1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
"""Test configuration.
Copyright (c) Reuben Thomas 2023.
Released under the GPL version 3, or (at your option) any later version.
"""
from typing import Any
from pytest import FixtureRequest, Parser, fixture
def pytest_generate_tests(metafunc: Any) -> None:
if "file_type" in metafunc.fixturenames:
metafunc.parametrize("file_type", [".ps", ".pdf"])
def pytest_addoption(parser: Parser) -> None:
parser.addoption(
"--regenerate-expected",
action="store_true",
help="regenerate the expected outputs",
)
parser.addoption(
"--regenerate-input",
action="store_true",
help="regenerate the inputs",
)
@fixture
def regenerate_expected(request: FixtureRequest) -> bool:
opt = request.config.getoption("--regenerate-expected")
assert isinstance(opt, bool)
return opt
@fixture
def regenerate_input(request: FixtureRequest) -> bool:
opt = request.config.getoption("--regenerate-input")
assert isinstance(opt, bool)
return opt
|