We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b23063e commit f744eb0Copy full SHA for f744eb0
test/conftest.py
@@ -8,6 +8,19 @@
8
import pytest
9
10
11
+def pytest_configure(config):
12
+ """
13
+ Allows plugins and conftest files to perform initial configuration.
14
+ This hook is called for every plugin and initial conftest
15
+ file after command line options have been parsed.
16
+
17
+ Here the same level of logging as clinica --verbose is used to allow for nipype debug set-up.
18
19
+ from clinica.cmdline import setup_logging
20
21
+ setup_logging(True)
22
23
24
def pytest_addoption(parser):
25
parser.addoption(
26
"--input_data_directory",
0 commit comments