Kaydet (Commit) 7044d6b8 authored tarafından Brett Cannon's avatar Brett Cannon

Skip over any file or folder that starts with a dot (e.g. .svn).

üst d3fb4bb4
......@@ -6,6 +6,8 @@ import unittest
def test_suite(package=__package__, directory=os.path.dirname(__file__)):
suite = unittest.TestSuite()
for name in os.listdir(directory):
if name.startswith('.'):
continue
path = os.path.join(directory, name)
if os.path.isfile(path) and name.startswith('test_'):
submodule_name = os.path.splitext(name)[0]
......@@ -15,6 +17,7 @@ def test_suite(package=__package__, directory=os.path.dirname(__file__)):
suite.addTest(module_tests)
elif os.path.isdir(path):
package_name = "{0}.{1}".format(package, name)
print(package_name)
__import__(package_name, level=0)
package_tests = getattr(sys.modules[package_name], 'test_suite')()
suite.addTest(package_tests)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment