##// END OF EJS Templates
don't assume tested ipython is on the PATH...
MinRK -
Show More
@@ -187,7 +187,7 b' def ipexec(fname, options=None):'
187 187 _ip = get_ipython()
188 188 test_dir = os.path.dirname(__file__)
189 189
190 ipython_cmd = find_cmd('ipython3' if py3compat.PY3 else 'ipython')
190 ipython_cmd = [sys.executable, '-m', 'IPython']
191 191 # Absolute path for filename
192 192 full_fname = os.path.join(test_dir, fname)
193 193 full_cmd = '%s %s %s' % (ipython_cmd, cmdargs, full_fname)
General Comments 0
You need to be logged in to leave comments. Login now