Commit 3076a47b authored by Ivan Tyagov's avatar Ivan Tyagov

Always check only validated Test Suites.

parent c09f11f5
Pipeline #6365 failed with stage
in 0 seconds
......@@ -312,7 +312,9 @@ class ERP5ScalabilityDistributor(ERP5ProjectUnitTestDistributor, object):
return_dict = {}
# Get test_suite informations from his title given in parameter
try:
test_suite = portal.test_suite_module.searchFolder(title=test_suite_title)[0]
test_suite = portal.test_suite_module.searchFolder(
title=test_suite_title,
validation_state="validated")[0]
cluster_configuration = test_suite.getClusterConfiguration()
number_configuration_list = test_suite.getGraphCoordinate()
randomized_path = test_suite.getRandomizedPath()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment