Skip to content

Commit b613122

Browse files
Merge pull request #154 from OSIPI/fix_conftest
fix conftest boolean option
2 parents 1290af0 + 8230fc8 commit b613122

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)