Skip to content

Commit e96a688

Browse files
committed
-
1 parent 0907990 commit e96a688

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

source_py2/test_python_toolbox/test_math_tools/test_cute_floor_div_and_divmod.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import numbers
77
import math
88

9+
import nose
10+
911
from python_toolbox import cute_testing
1012

1113
from python_toolbox.math_tools import cute_floor_div, cute_divmod
@@ -62,6 +64,8 @@ def test_illegal_cases():
6264

6365

6466
def test_meaningful_cases():
67+
if sys_tools.is_pypy:
68+
raise nose.SkipTest
6569
meaningful_cases = (
6670
(infinity, 3), (infinity, 300.5), (infinity, -3), (infinity, -300.5),
6771
(-infinity, 3), (-infinity, 300.5), (-infinity, -3), (-infinity, -300.5),

0 commit comments

Comments
 (0)