From 5b7cd12e76a09964211e71ba57ea91daa8ae4000 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sun, 14 Feb 2016 22:28:14 -0800 Subject: [PATCH] Don't run the skynet example from the tests. It's too slow on the Travis bots and times out. --- util/test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/test.py b/util/test.py index eb6e076c..8f3fc1d3 100755 --- a/util/test.py +++ b/util/test.py @@ -122,7 +122,7 @@ class Test: timed_out[0] = True p.kill() - timer = Timer(5, kill_process, [proc]) + timer = Timer(2, kill_process, [proc]) try: timer.start() @@ -362,6 +362,9 @@ def run_example(path): if "animals" in path: return if "guess_number" in path: return + # This one is annoyingly slow. + if "skynet" in path: return + run_script(WREN_APP, path, "example")