diff --git a/framework/python/src/common/testreport.py b/framework/python/src/common/testreport.py index 6d0b6e78e..2aace3963 100644 --- a/framework/python/src/common/testreport.py +++ b/framework/python/src/common/testreport.py @@ -404,33 +404,6 @@ def generate_summary(self, json_data): mac, trailing_space=False) - # Add device configuration - summary += ''' -
-
- Device Configuration -
- ''' - - if 'test_modules' in json_data['device']: - - sorted_modules = {} - - for test_module in json_data['device']['test_modules']: - if 'enabled' in json_data['device']['test_modules'][test_module]: - sorted_modules[test_module] = json_data['device']['test_modules'][ - test_module]['enabled'] - - # Sort the modules by enabled first - sorted_modules = sorted(sorted_modules.items(), - key=lambda x: x[1], - reverse=True) - - for module in sorted_modules: - summary += self.generate_device_module_label(module[0], module[1]) - - summary += '
' - # Add device configuration summary += '''