From 7528b23f63755ecb2bc60e25aeef0188179b7681 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 18 Feb 2020 11:42:57 -0800 Subject: Fix runtest.py to only run *Tests.py files under testing as well as under src (unittests) --- runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtest.py b/runtest.py index 554b4f6..fdbbe22 100755 --- a/runtest.py +++ b/runtest.py @@ -662,7 +662,7 @@ else: # sys.stderr.write("to:%s\n"%tp) for path in glob.glob(tp): if os.path.isdir(path): - if path.startswith('src'): + if path.startswith('src') or path.startswith('testing'): for p in find_Tests_py(path): unittests.append(p) elif path.startswith('test'): -- cgit v0.12