blob: 1783ee19b8a7d0bfa35a10a163253dad39aeae21 [file] [log] [blame]
# Copyright 2019 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
DEPS = [
'futures',
'python',
'step',
]
def RunSteps(api):
futures = []
for i in xrange(10):
def _runner(i):
api.python.inline(
'sleep loop [%d]' % (i+1),
'''
import time
for x in xrange(%d):
print "Hi! %%s" %% x
time.sleep(1)
''' % (i+1))
return i + 1
futures.append(api.futures.spawn(_runner, i))
for helper in api.futures.iwait(futures):
api.step('Sleeper %d complete' % helper.result(), cmd=None)
def GenTests(api):
yield api.test('basic')