Commit d8bf577b authored by Rafael Monnerat's avatar Rafael Monnerat

For now, ignore high-load tests on runTestSuite

parent e77ac1a7
......@@ -222,9 +222,9 @@ class CloudoooTestSuite(TestSuite):
test_list = []
for test_path in glob.glob('/%s/handler/*/tests/test*.py' %
"/".join(cloudooo.__file__.split('/')[:-1])):
test_case = test_path.split(os.sep)[-1][:-3] # remove .py
test_list.append(test_case)
if test_case not in ['testOooHighLoad']:
test_list.append(test_case)
return test_list
class SubprocessError(EnvironmentError):
......
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