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 6fec887 commit 489a48dCopy full SHA for 489a48d
nipype/interfaces/fsl/tests/test_preprocess.py
@@ -31,6 +31,9 @@ def setup_infile(tmpdir):
31
@pytest.mark.skipif(no_fsl(), reason="fsl is not installed")
32
def test_bet(setup_infile):
33
tmp_infile, tp_dir = setup_infile
34
+ # BET converts the in_file path to be relative to prevent
35
+ # failure with long paths.
36
+ tmp_infile = os.path.relpath(tmp_infile, start=os.getcwd())
37
better = fsl.BET()
38
assert better.cmd == "bet"
39
0 commit comments