From 656cffeb49394f1cc935001f90337028e01472c5 Mon Sep 17 00:00:00 2001 From: Doug Anderson Date: Mon, 3 Dec 2012 14:43:19 +0000 Subject: [PATCH] patman: Add settings to the list of modules to doctest The settings modules now has doctests, so run them. Signed-off-by: Doug Anderson --- tools/patman/patman.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/patman/patman.py b/tools/patman/patman.py index 2e9e5dc37e..e56dd01308 100755 --- a/tools/patman/patman.py +++ b/tools/patman/patman.py @@ -85,8 +85,9 @@ if options.test: result = unittest.TestResult() suite.run(result) - suite = doctest.DocTestSuite('gitutil') - suite.run(result) + for module in ['gitutil', 'settings']: + suite = doctest.DocTestSuite(module) + suite.run(result) # TODO: Surely we can just 'print' result? print result -- 2.39.2