Skip to content
Snippets Groups Projects
Commit 25f12646 authored by stijn's avatar stijn Committed by Damien George
Browse files

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

parent 803264bb
Branches
No related tags found
No related merge requests found
......@@ -2,7 +2,8 @@
try:
from math import *
except ImportError:
erf
except (ImportError, NameError):
print("SKIP")
import sys
sys.exit()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment