blob: c81506b97ea2e9465d5140f26cf7439e9213a6ac [file] [log] [blame]
# Copyright 2018 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 = [
"random",
"step",
]
def RunSteps(api):
my_list = range(10)
api.random.shuffle(my_list)
api.step('echo list', ['echo', ', '.join(map(str, my_list))])
def GenTests(api):
yield api.test("basic")
yield api.test("reseed") + api.random.seed(4321)