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.
2 parents a299e41 + e0046a0 commit af35292Copy full SHA for af35292
.gitignore
@@ -20,4 +20,5 @@ __pycache__
20
*.egg-info
21
~*
22
/outputs
23
+/Test.venv
24
/test-data
tests/test_smriprep.py
@@ -1,9 +1,15 @@
1
+from pathlib import Path
2
from nipype2pydra.cli import workflow
3
from nipype2pydra.utils import show_cli_trace
4
5
6
def test_smriprep(pkg_dir, cli_runner):
7
8
+ output_dir = Path(pkg_dir) / "outputs"
9
+
10
+ if not output_dir.exists():
11
+ output_dir.mkdir()
12
13
result = cli_runner(
14
workflow,
15
[
0 commit comments