summaryrefslogtreecommitdiffstats
path: root/unitest.py
diff options
context:
space:
mode:
authorAlessio Sergi <al3hex@gmail.com>2018-01-29 19:59:17 +0100
committerAlessio Sergi <al3hex@gmail.com>2018-01-29 20:03:00 +0100
commit7e70b36f91644f7f1f0e460e1f4343b67ff3541e (patch)
tree6e0bc12ca680b75789a99eb000a05f8aa2531f90 /unitest.py
parent32425eb205eb7ad83b838a020423b0fda80fb8e2 (diff)
Take advantage of rich comparisons for PyPy too
Diffstat (limited to 'unitest.py')
-rwxr-xr-xunitest.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/unitest.py b/unitest.py
index 3ea2170a..84a8e4c7 100755
--- a/unitest.py
+++ b/unitest.py
@@ -28,7 +28,6 @@ from glances.stats import GlancesStats
from glances import __version__
from glances.globals import WINDOWS, LINUX
from glances.outputs.glances_bars import Bar
-from glances.compat import PY_PYPY
from glances.thresholds import GlancesThresholdOk
from glances.thresholds import GlancesThresholdCareful
from glances.thresholds import GlancesThresholdWarning
@@ -213,7 +212,6 @@ class TestGlances(unittest.TestCase):
self.assertTrue(type(stats_grab) is list, msg='GPU stats is not a list')
print('INFO: GPU stats: %s' % stats_grab)
- @unittest.skipIf(PY_PYPY, True)
def test_094_thresholds(self):
"""Test thresholds classes"""
print('INFO: [TEST_094] Thresholds')