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