Increase timeout for test_version

This commit is contained in:
Florian Bruhin 2017-09-10 14:28:42 +02:00
parent 836c8de87d
commit f320da07b4

View File

@ -175,7 +175,7 @@ def test_version(request):
proc.start(sys.executable, args)
ok = proc.waitForStarted(2000)
assert ok
ok = proc.waitForFinished(2000)
ok = proc.waitForFinished(10000)
stdout = bytes(proc.readAllStandardOutput()).decode('utf-8')
print(stdout)