Commit a22e6eb1 authored by Rafael Monnerat's avatar Rafael Monnerat

Ignore some unreliable tests and test for ffmpeg

Those OOo tests are making the current tests stalle and test ffmpeg will
fail due lack of ffmpeg itself.
parent d8bf577b
......@@ -223,7 +223,9 @@ class CloudoooTestSuite(TestSuite):
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
if test_case not in ['testOooHighLoad']:
# testOooMonitorRequest is making testsuite stall.
if test_case not in ['testOooHighLoad', 'testOooMonitorRequest'] and \
not test_case.startswith("testFfmpeg"):
test_list.append(test_case)
return test_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