From 59357c0c4f923b5236b26e5ae80c314d4b8d51f7 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 22 Dec 2020 13:04:49 +0000 Subject: [PATCH] More verbose module checks --- tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests.py b/tests.py index bc84d9a00..edf17efaa 100644 --- a/tests.py +++ b/tests.py @@ -2571,6 +2571,7 @@ def testFunctions(): # which modules is each function used within? for modName in modules: + print('Module: ' + modName + ' ✓') with open(modName + '.py', "r") as f: lines = f.readlines() for name, properties in functionProperties.items(): @@ -2622,6 +2623,7 @@ def testFunctions(): ' in module ' + properties['module'] + ' is not called anywhere') assert properties['calledInModule'] + print('Function: ' + name + ' ✓') # print(str(function)) # print(str(functionProperties))