Browse Source

tests: Skip special math fun tests when math module exists but not funs.

pull/1139/merge
stijn 10 years ago
committed by Damien George
parent
commit
25f1264699
  1. 3
      tests/float/math_fun_special.py

3
tests/float/math_fun_special.py

@ -2,7 +2,8 @@
try:
from math import *
except ImportError:
erf
except (ImportError, NameError):
print("SKIP")
import sys
sys.exit()

Loading…
Cancel
Save