##// END OF EJS Templates
catch up tests to recent changes...
MinRK -
Show More
@@ -47,9 +47,11 b' class MyConfigurable(Configurable):'
47 47
48 48 mc_help=u"""MyConfigurable options
49 49 ----------------------
50 MyConfigurable.a : Int [default: 1]
50 MyConfigurable.a : Int
51 Default: 1
51 52 The integer a.
52 MyConfigurable.b : Float [default: 1.0]
53 MyConfigurable.b : Float
54 Default: 1.0
53 55 The integer b."""
54 56
55 57 class Foo(Configurable):
@@ -197,7 +197,10 b' def ipexec(fname, options=None):'
197 197
198 198 # For these subprocess calls, eliminate all prompt printing so we only see
199 199 # output from script execution
200 prompt_opts = ['pi1=""', 'pi2=""', 'po=""']
200 prompt_opts = [ 'InteractiveShell.prompt_in1=""',
201 'InteractiveShell.prompt_in2=""',
202 'InteractiveShell.prompt_out=""'
203 ]
201 204 cmdargs = ' '.join(default_argv() + prompt_opts + options)
202 205
203 206 _ip = get_ipython()
General Comments 0
You need to be logged in to leave comments. Login now