Added an example of a test suite that run with the loadscope scheduler.
This commit is contained in:
51
example/loadscope/test/test_gamma.py
Normal file
51
example/loadscope/test/test_gamma.py
Normal file
@@ -0,0 +1,51 @@
|
||||
from time import sleep
|
||||
|
||||
|
||||
def test_gamma0():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma1():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma2():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma3():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma4():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma5():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma6():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma7():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma8():
|
||||
sleep(5)
|
||||
assert True
|
||||
|
||||
|
||||
def test_gamma9():
|
||||
sleep(5)
|
||||
assert True
|
||||
Reference in New Issue
Block a user