Do not document tests with leading underscore

This commit is contained in:
Kp 2013-11-09 19:01:37 +00:00
parent 9efbba6c94
commit 6296dbc749

View file

@ -288,7 +288,7 @@ class DXXCommon(LazyObjectConstructor):
{
'variable': BoolVariable,
'arguments': [
('sconf_%s' % name[6:], None, ConfigureTests.describe(name) or ('assume result of %s' % name)) for name in ConfigureTests.implicit_tests + ConfigureTests.custom_tests
('sconf_%s' % name[6:], None, ConfigureTests.describe(name) or ('assume result of %s' % name)) for name in ConfigureTests.implicit_tests + ConfigureTests.custom_tests if name[0] != '_'
],
},
{