Skip to content
Snippets Groups Projects
Commit 656cffeb authored by Doug Anderson's avatar Doug Anderson Committed by Simon Glass
Browse files

patman: Add settings to the list of modules to doctest


The settings modules now has doctests, so run them.

Signed-off-by: default avatarDoug Anderson <dianders@chromium.org>
parent a1dcee84
No related branches found
No related tags found
No related merge requests found
...@@ -85,8 +85,9 @@ if options.test: ...@@ -85,8 +85,9 @@ if options.test:
result = unittest.TestResult() result = unittest.TestResult()
suite.run(result) suite.run(result)
suite = doctest.DocTestSuite('gitutil') for module in ['gitutil', 'settings']:
suite.run(result) suite = doctest.DocTestSuite(module)
suite.run(result)
# TODO: Surely we can just 'print' result? # TODO: Surely we can just 'print' result?
print result print result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment