coreboot-kgpe-d16/util/cbfstool/tests/conftest.py

13 lines
265 B
Python

# SPDX-License-Identifier: BSD-3-Clause
import pathlib
def pytest_addoption(parser):
here = pathlib.Path(__file__).parent
parser.addoption(
"--elogtool-path",
type=pathlib.Path,
default=(here / ".." / "elogtool").resolve(),
)