Commit 2d61ae08 authored by Rafael Monnerat's avatar Rafael Monnerat

Fix egg_test recipe.

parent 94e3a65b
...@@ -102,15 +102,14 @@ class CloudoooRecipe(GenericBaseRecipe): ...@@ -102,15 +102,14 @@ class CloudoooRecipe(GenericBaseRecipe):
class EggTestRecipe(GenericBaseRecipe): class EggTestRecipe(GenericBaseRecipe):
def install(self): def install(self):
path_list = [] path_list = []
common_dict = dict( common_dict = dict()
prepend_path=self.options['prepend-path'], # prepend_path=self.options['prepend-path'],
) #)
common_list = [ "--source-core-path-list", self.options['test-list']] common_list = [ "--source-core-path-list", self.options['test-list']]
path_list.append(run_unit_test_path)
path_list.append(self.createPythonScript(self.options['run-test-suite'], path_list.append(self.createPythonScript(self.options['run-test-suite'],
__name__ + '.test.runTestSuite', [dict( __name__ + '.test.runTestSuite', [dict(
call_list=[self.options['run-test-suite-binary'], call_list=[self.options['run-test-suite-binary'],
], **common_dict)])) ] + common_list, **common_dict)]))
return path_list return path_list
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