File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
pydra/tasks/dcm2niix/tests Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -130,3 +130,7 @@ dmypy.json
130
130
131
131
# Pycharm
132
132
.idea
133
+
134
+
135
+ # VSCode
136
+ .vscode
Original file line number Diff line number Diff line change
1
+ from pydra .tasks .dcm2niix .utils import Dcm2Niix
2
+
3
+
4
+ def test_dcm2niix ():
5
+ task = Dcm2Niix ()
6
+ task .inputs .in_dir = "test-data/test_dicoms"
7
+ task .inputs .out_dir = "test-data"
8
+ task .inputs .compress = "y"
9
+ assert (
10
+ task .cmdline
11
+ == "dcm2niix -o 'test-data' -f 'out_file' -z y 'test-data/test_dicoms'"
12
+ )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ classifiers =
23
23
[options]
24
24
python_requires = >=3.7
25
25
install_requires =
26
- pydra >= 0.6.2
26
+ pydra >= 0.19
27
27
packages = find_namespace:
28
28
29
29
[options.packages.find]
You can’t perform that action at this time.
0 commit comments