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

pull/1139/merge
stijn 2015-03-03 11:24:52 +01:00 zatwierdzone przez Damien George
rodzic 803264bb17
commit 25f1264699
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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