Commit 543c76e6 authored by Ayush Tiwari's avatar Ayush Tiwari

bt5_config: Explicitly add performance test for tests in zexp Business Manager file

parent 87c6d131
......@@ -65,7 +65,11 @@ class _ERP5(ERP5TypeTestSuite):
class PERF(_ERP5):
def getTestList(self):
return [x for x in self._getAllTestList() if x.find('Performance')>0]
test_list = [x for x in self._getAllTestList() if x.find('Performance')>0]
# XXX: Explicitly add the tests for running the tests inside the zexp file
# Should be removed after generic way to look for tests inside zexp BM
test_list.append('erp5_performance_test:testWorkflowPerformance')
return test_list
class CloudPERF(_ERP5):
......
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