Skip to content

Commit af35292

Browse files
committed
Merge branches 'main' and 'main' of github.com:Australian-Imaging-Service/nipype2pydra
2 parents a299e41 + e0046a0 commit af35292

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ __pycache__
2020
*.egg-info
2121
~*
2222
/outputs
23+
/Test.venv
2324
/test-data

tests/test_smriprep.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1+
from pathlib import Path
12
from nipype2pydra.cli import workflow
23
from nipype2pydra.utils import show_cli_trace
34

45

56
def test_smriprep(pkg_dir, cli_runner):
67

8+
output_dir = Path(pkg_dir) / "outputs"
9+
10+
if not output_dir.exists():
11+
output_dir.mkdir()
12+
713
result = cli_runner(
814
workflow,
915
[

0 commit comments

Comments
 (0)