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

TEST: test make install

parent 5d034711
No related branches found
No related tags found
1 merge request!23BF: install errors if it gets given a dir name
Pipeline #10384 passed
#!/usr/bin/env python
#
import os
import sys
import os.path as op
import subprocess as sp
import tempfile
def test_make_install():
env = os.environ.copy()
with tempfile.TemporaryDirectory() as td:
env['FSLDEVDIR'] = td
sp.run(('make', 'install'), env=env, 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