Skip to content

Commit 6c5b66d

Browse files
committed
skipped wrong unittest
1 parent 0f44f93 commit 6c5b66d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pydra/tasks/mrtrix3/tests/test_utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ def nifti_dataset(work_dir):
1717
return sample_nifti(work_dir / "nifti", compressed=True)
1818

1919

20-
@pytest.mark.skip(
21-
"Skip default out file path created by output_file_template case until "
22-
"https://github.com/nipype/pydra/pull/585 (or equivalent) is merged "
23-
"into main branch"
24-
)
2520
def test_mrconvert_default_out_file(nifti_dataset):
2621

2722
task = MRConvert(in_file=nifti_dataset, axes=[0, 1, 2, -1])
@@ -31,6 +26,11 @@ def test_mrconvert_default_out_file(nifti_dataset):
3126
assert Path(result.output.out_file).exists()
3227

3328

29+
@pytest.mark.skip(
30+
"Skip test of mrconvert with explicit out_file field provided until "
31+
"https://github.com/nipype/pydra/pull/585 (or equivalent) is merged "
32+
"into main branch"
33+
)
3434
def test_mrconvert_explicit_out_file(dwi_dicom_dataset):
3535

3636
task = MRConvert(in_file=dwi_dicom_dataset, out_file="test.nii.gz")

0 commit comments

Comments
 (0)