Skip to content

Commit 8230fc8

Browse files
authored
fix conftest boolean option
1 parent 19d5f75 commit 8230fc8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ def pytest_addoption(parser):
1919
)
2020
parser.addoption(
2121
"--ricianNoise",
22+
action="store_true",
2223
default=False,
23-
type=bool,
2424
help="Use Rician noise, non-rician is gaussian",
2525
)
2626
parser.addoption(
2727
"--usePrior",
28+
action="store_true",
2829
default=False,
29-
type=bool,
3030
help="Use a prior where accepted",
3131
)
3232
parser.addoption(

0 commit comments

Comments
 (0)