mirror of https://github.com/nicolargo/glances.git
Tests using /etc/glances/glances.conf from already installed version #1654
This commit is contained in:
parent
baa7e7f574
commit
6e7bd2560c
|
|
@ -189,7 +189,7 @@ critical=90
|
|||
[irq]
|
||||
# Documentation: https://glances.readthedocs.io/en/stable/aoa/irq.html
|
||||
# This plugin is disabled by default
|
||||
disable=True
|
||||
disable=False
|
||||
|
||||
[folders]
|
||||
# Documentation: https://glances.readthedocs.io/en/stable/aoa/folders.html
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ class TestGlances(unittest.TestCase):
|
|||
|
||||
def test_001_plugins(self):
|
||||
"""Check mandatory plugins."""
|
||||
plugins_to_check = ['system', 'cpu', 'load', 'mem', 'memswap', 'network', 'diskio', 'fs', 'irq']
|
||||
plugins_to_check = ['system', 'cpu', 'load', 'mem', 'memswap', 'network', 'diskio', 'fs']
|
||||
print('INFO: [TEST_001] Check the mandatory plugins list: %s' % ', '.join(plugins_to_check))
|
||||
plugins_list = stats.getPluginsList()
|
||||
for plugin in plugins_to_check:
|
||||
|
|
|
|||
Loading…
Reference in New Issue