1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

tests:docs: add a exceptions set

Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Ralph Boehme 2018-12-03 15:44:22 +01:00 committed by Jeremy Allison
parent 1327e2f40f
commit 69521c17bb

View File

@ -244,7 +244,12 @@ class SmbDotConfTests(TestCase):
for tuples in self.defaults:
param, default, context, param_type = tuples
if param in ['printing', 'rpc server dynamic port range']:
exceptions = set([
'printing',
'rpc server dynamic port range',
])
if param in exceptions:
continue
section = None