mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
patman: Add settings to the list of modules to doctest
The settings modules now has doctests, so run them. Signed-off-by: Doug Anderson <dianders@chromium.org>
This commit is contained in:
parent
a1dcee84c9
commit
656cffeb49
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue