diff options
author | Maxime Dénès <mail@maximedenes.fr> | 2018-03-16 00:03:59 +0100 |
---|---|---|
committer | Maxime Dénès <mail@maximedenes.fr> | 2018-03-16 15:13:37 +0100 |
commit | 1b462cfd2b03fa90e30b6d53de3adb33bc756eaf (patch) | |
tree | 56902fe4de6b021f733a89a1ef725fbf00bb7641 | |
parent | c921825a257571953e92ee4717bfb49f7ec6eb12 (diff) |
[Sphinx] Increase coqtop timeout to avoid spurious failures on CI
-rw-r--r-- | doc/tools/coqrst/repl/coqtop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/coqrst/repl/coqtop.py b/doc/tools/coqrst/repl/coqtop.py index 2df97d3dc..d0e8d5733 100644 --- a/doc/tools/coqrst/repl/coqtop.py +++ b/doc/tools/coqrst/repl/coqtop.py @@ -59,7 +59,7 @@ class CoqTop: def next_prompt(self): "Wait for the next coqtop prompt, and return the output preceeding it." - self.coqtop.expect(CoqTop.COQTOP_PROMPT, timeout = 1) + self.coqtop.expect(CoqTop.COQTOP_PROMPT, timeout = 10) return self.coqtop.before def sendone(self, sentence): |