Skip to content
Snippets Groups Projects
Commit 4d1a6c04 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #7843 from haukepetersen/fix_test_unittestspexpecttimeout

test/unittests: set pexpect timeout to 60s
parents e0170336 4bdce27d
No related branches found
No related tags found
No related merge requests found
...@@ -16,4 +16,4 @@ def testfunc(child): ...@@ -16,4 +16,4 @@ def testfunc(child):
child.expect(u"OK \\([0-9]+ tests\\)") child.expect(u"OK \\([0-9]+ tests\\)")
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(testrunner.run(testfunc)) sys.exit(testrunner.run(testfunc, timeout=60))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment