repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
treewide: Move device_tree to commonlib
[coreboot2.git]
/
util
/
cbfstool
/
tests
/
conftest.py
blob
4e779245df6d7a64bb5828c5b04e9ee286640879
1
# SPDX-License-Identifier: BSD-3-Clause
2
3
import
pathlib
4
5
6
def
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
)