@lcc.suite("Some suite")
class SomeSuite:
@lcc.test("Do things in a for loop")
def test_some_test(self):
my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
for element in my_list:
# do some tests with elementIs it feasible to parameterised this test as per http://docs.lemoncheesecake.io/en/latest/parametrized.html AND run all the tests in parallel?