##// END OF EJS Templates
Shorten leftover references to 'IPython test group'
Thomas Kluyver -
Show More
@@ -417,7 +417,7 b' def run_iptestall(options):'
417 if options.fast == 1:
417 if options.fast == 1:
418 # This actually means sequential, i.e. with 1 job
418 # This actually means sequential, i.e. with 1 job
419 for controller in to_run:
419 for controller in to_run:
420 print('IPython test group:', controller.section)
420 print('Test group:', controller.section)
421 sys.stdout.flush() # Show in correct order when output is piped
421 sys.stdout.flush() # Show in correct order when output is piped
422 controller, res = do_run(controller, buffer_output=False)
422 controller, res = do_run(controller, buffer_output=False)
423 if res:
423 if res:
@@ -445,7 +445,7 b' def run_iptestall(options):'
445 return
445 return
446
446
447 for controller in not_run:
447 for controller in not_run:
448 print(justify('IPython test group: ' + controller.section, 'NOT RUN'))
448 print(justify('Test group: ' + controller.section, 'NOT RUN'))
449
449
450 t_end = time.time()
450 t_end = time.time()
451 t_tests = t_end - t_start
451 t_tests = t_end - t_start
General Comments 0
You need to be logged in to leave comments. Login now