Commit d5c907bf authored by Denis Bilenko's avatar Denis Bilenko

bigger delays in tests for travis/pypy

parent 63652d77
...@@ -2,7 +2,7 @@ import gevent ...@@ -2,7 +2,7 @@ import gevent
from util import alarm from util import alarm
alarm(1) alarm(3)
with gevent.Timeout(0.01, False): with gevent.Timeout(0.01, False):
......
...@@ -2,7 +2,7 @@ import sys ...@@ -2,7 +2,7 @@ import sys
from gevent.subprocess import Popen from gevent.subprocess import Popen
from util import alarm from util import alarm
alarm(1) alarm(3)
popen = Popen([sys.executable, '-c', 'pass']) popen = Popen([sys.executable, '-c', 'pass'])
while popen.poll() is None: while popen.poll() is None:
......
...@@ -264,7 +264,7 @@ def report(total, failed, exit=True, took=None, expected=None): ...@@ -264,7 +264,7 @@ def report(total, failed, exit=True, took=None, expected=None):
class TestServer(unittest.TestCase): class TestServer(unittest.TestCase):
cwd = '../examples/' cwd = '../examples/'
args = [] args = []
before_delay = 1 before_delay = 3
after_delay = 0.5 after_delay = 0.5
def test(self): def test(self):
......
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