##// END OF EJS Templates
catch KeyboardInterrupt in parallel tests teardown...
MinRK -
Show More
@@ -109,7 +109,10 b" def add_engines(n=1, profile='iptest', total=False):"
109 109 return eps
110 110
111 111 def teardown():
112 time.sleep(1)
112 try:
113 time.sleep(1)
114 except KeyboardInterrupt:
115 return
113 116 while launchers:
114 117 p = launchers.pop()
115 118 if p.poll() is None:
@@ -119,7 +122,10 b' def teardown():'
119 122 print(e)
120 123 pass
121 124 if p.poll() is None:
122 time.sleep(.25)
125 try:
126 time.sleep(.25)
127 except KeyboardInterrupt:
128 return
123 129 if p.poll() is None:
124 130 try:
125 131 print('cleaning up test process...')
General Comments 0
You need to be logged in to leave comments. Login now