attempt to mitigate our Debian build failures

* tests/Makefile.am: Run Python tests before other tests.
* tests/python/ipnbdoctest.py: Add some debug.
This commit is contained in:
Alexandre Duret-Lutz 2016-11-08 19:07:12 +01:00
parent 5a862295d3
commit 75c33defb3
2 changed files with 9 additions and 4 deletions

View file

@ -153,7 +153,8 @@ def run_cell(kc, cell):
# print cell.input
kc.execute(cell.input)
# wait for finish, maximum 20s
kc.get_shell_msg(timeout=20)
reply = kc.get_shell_msg(timeout=20)
print("reply:\n", reply)
outs = []
while True: