Skip to content
Snippets Groups Projects
Commit 0dde76ce authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: expand update_fsl_package test

parent e0c8ace9
No related branches found
No related tags found
1 merge request!45New update_fsl_package script
......@@ -10,4 +10,11 @@ import subprocess as sp
def test_update_fsl_package():
fsldir = os.environ['FSLDIR']
cmd = op.join(fsldir, 'share', 'fsl', 'sbin', 'update_fsl_package')
sp.run(f'{cmd} -a -d -y -e --dry-run', check=True)
sp.run(f'{cmd} -y -a -d -e --verbose --dry_run', check=True)
sp.run(f'{cmd} -y -a -d --verbose --dry_run', check=True)
sp.run(f'{cmd} -y -a -e --verbose --dry_run', check=True)
sp.run(f'{cmd} -y -a --verbose --dry_run', check=True)
sp.run(f'{cmd} -y -d --verbose --dry_run fsleyes', check=True)
sp.run(f'{cmd} -y -d --verbose --dry_run fsl-base', check=True)
sp.run(f'{cmd} -y --verbose --dry_run fsleyes', check=True)
sp.run(f'{cmd} -y --verbose --dry_run fsl-base', check=True)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment