From 47da6f297fb4c07dcd9a1e03e23403c86a01dfbd Mon Sep 17 00:00:00 2001 From: David Halter Date: Fri, 13 Jul 2012 01:17:00 +0200 Subject: [PATCH] skip thirdparty modules, if not available --- test/run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/run.py b/test/run.py index 4c6c982b..767df4cd 100755 --- a/test/run.py +++ b/test/run.py @@ -131,6 +131,7 @@ def test_dir(completion_test_dir, third_party=False): __import__(f_name.replace('.py', '')) except ImportError: summary.append('Thirdparty-Library %s not found.' % f_name) + continue path = os.path.join(completion_test_dir, f_name) f = open(path) num_tests, fails = run_test(f.read())