From a3f3e3ce0368e822d32b414d5c462502056b3516 Mon Sep 17 00:00:00 2001 From: Bob Nystrom Date: Sat, 17 Oct 2015 13:29:50 -0700 Subject: [PATCH] Don't try to run the guess_number example from the test script. --- util/test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/test.py b/util/test.py index 7105bde3..4375140d 100755 --- a/util/test.py +++ b/util/test.py @@ -336,6 +336,8 @@ def run_api_test(path): def run_example(path): + # The guess number requires user input. + if "guess_number" in path: return run_script(WREN_APP, path, "example")