summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/core/tests/test_umath_complex.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/numpy/core/tests/test_umath_complex.py b/numpy/core/tests/test_umath_complex.py
index 5cc5d9566..4fe0faa59 100644
--- a/numpy/core/tests/test_umath_complex.py
+++ b/numpy/core/tests/test_umath_complex.py
@@ -19,11 +19,7 @@ try:
finally:
np.seterr(**olderr)
# TODO: replace with a check on whether platform-provided C99 funcs are used
-have_platform_functions = (sys.platform.startswith('sunos') or
- (sys.platform == 'darwin' and 'powerpc' in
- platform.processor()))
-skip_complex_tests = (sys.platform.startswith('win') or
- (have_platform_functions and functions_seem_flaky))
+skip_complex_tests = (not sys.platform.startswith('linux') or functions_seem_flaky)
def platform_skip(func):
return dec.skipif(skip_complex_tests,