From f35ed8a6c0dc81b86c69348fff543d52f070ee28 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Fri, 26 Sep 2014 10:57:12 -0400 Subject: [PATCH] Update module test code to avoid pycs (that are not used) --- test/units/TestModules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/TestModules.py b/test/units/TestModules.py index 83c2b7c398..aef2e83ed6 100644 --- a/test/units/TestModules.py +++ b/test/units/TestModules.py @@ -16,7 +16,7 @@ class TestModules(unittest.TestCase): for (dirpath, dirnames, filenames) in os.walk(path): for filename in filenames: (path, ext) = os.path.splitext(filename) - if ext != ".ps1": + if ext == ".py": module_list.append(os.path.join(dirpath, filename)) return module_list