blob: 4e779245df6d7a64bb5828c5b04e9ee286640879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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(),
)
|