Added an example of a test suite that run with the loadscope scheduler.
This commit is contained in:
51
example/loadscope/test/test_alpha.py
Normal file
51
example/loadscope/test/test_alpha.py
Normal file
@@ -0,0 +1,51 @@
|
||||
from time import sleep
|
||||
|
||||
|
||||
def test_alpha0():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha1():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha2():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha3():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha4():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha5():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha6():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha7():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha8():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_alpha9():
|
||||
sleep(5)
|
||||
assert True
|
||||
Reference in New Issue
Block a user