From 801493206bc67b9ded9d4fc587f5e6023c31f570 Mon Sep 17 00:00:00 2001 From: mrubtsov Date: Thu, 28 Nov 2019 10:05:45 +0300 Subject: [PATCH] unskip tests count & nunique --- sdc/tests/test_series.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdc/tests/test_series.py b/sdc/tests/test_series.py index 17b6f6d66..6887530e6 100644 --- a/sdc/tests/test_series.py +++ b/sdc/tests/test_series.py @@ -1881,7 +1881,6 @@ def test_impl(S): S = pd.Series([np.nan, 2, 3.]) self.assertEqual(hpat_func(S), test_impl(S)) - @skip_numba_jit def test_series_count1(self): def test_impl(S): return S.count() @@ -3989,7 +3988,7 @@ def pyfunc(series, axis, level, numeric_only): cfunc(series, axis=None, level=None, numeric_only=True) self.assertIn(msg.format('numeric_only', 'bool'), str(raises.exception)) - @skip_numba_jit + def test_series_nunique(self): def test_series_nunique_impl(S): return S.nunique()