summaryrefslogtreecommitdiff
path: root/sensors_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sensors_test.py')
-rw-r--r--sensors_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sensors_test.py b/sensors_test.py
index cc30b44..f82e757 100644
--- a/sensors_test.py
+++ b/sensors_test.py
@@ -9,4 +9,5 @@ class SensorsTest(unittest.TestCase):
self.assertTrue(len(sen) >= 1)
if __name__ == '__main__':
- unittest.main()
+ suite = unittest.TestLoader().loadTestsFromTestCase(SensorsTest)
+ unittest.TextTestRunner(verbosity=2).run(suite)