9 lines
169 B
Python
9 lines
169 B
Python
|
|
import time
|
||
|
|
from autotest_lib.server import test
|
||
|
|
|
||
|
|
class sleeptest(test.test):
|
||
|
|
version = 1
|
||
|
|
|
||
|
|
def run_once(self, host=None, seconds=1):
|
||
|
|
time.sleep(seconds)
|