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