xref: /aosp_15_r20/external/coreboot/util/cbfstool/tests/conftest.py (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1# SPDX-License-Identifier: BSD-3-Clause
2
3import pathlib
4
5
6def pytest_addoption(parser):
7    here = pathlib.Path(__file__).parent
8    parser.addoption(
9        "--elogtool-path",
10        type=pathlib.Path,
11        default=(here / ".." / "elogtool").resolve(),
12    )
13