From 5719912e7fcfa18ff3249bbb49f7b5e0032288cf Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Tue, 27 Oct 2015 19:59:12 -0400 Subject: added a skip for the test dir in module repos --- hacking/module_formatter.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index e18aa8a837..f4ab5d7d9a 100755 --- a/hacking/module_formatter.py +++ b/hacking/module_formatter.py @@ -174,6 +174,10 @@ def list_modules(module_dir, depth=0): categories[category][module] = d categories['all'][module] = d + # keep module tests out of becomeing module docs + if 'test' in categories: + del categories['test'] + return categories ##################################################################################### -- cgit v1.2.1