#!/usr/bin/python Import("CoreTest", "testing_group") res = [] def ContainerTest(name): run = CoreTest("containers/%s" % name) Alias("tests/core/containers", run) if len(res) > 0 and testing_group([ "tests/core/containers" ]): Depends(run, res[-1]) return run res += [ ContainerTest("set") ] res += [ ContainerTest("database") ] Return("res")