diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2017-09-30 17:59:13 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-30 17:59:13 -0600 |
| commit | d05fd3032cccabf5ed18840b43513a73499af5d6 (patch) | |
| tree | a9a1d760547e5983c59400249bc8086d73e191c2 /numpy/f2py/tests/test_common.py | |
| parent | 697609cbb3b49dac0a61370ce7c8cd9b320fc43b (diff) | |
| parent | 448bb82e6f6ad5d6ff98705a55fe34ccd938446c (diff) | |
| download | numpy-d05fd3032cccabf5ed18840b43513a73499af5d6.tar.gz | |
Merge pull request #9645 from xoviat/appveyor
ENH: enable OpenBLAS on windows.
Diffstat (limited to 'numpy/f2py/tests/test_common.py')
| -rw-r--r-- | numpy/f2py/tests/test_common.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/numpy/f2py/tests/test_common.py b/numpy/f2py/tests/test_common.py index aaa35b678..81082e575 100644 --- a/numpy/f2py/tests/test_common.py +++ b/numpy/f2py/tests/test_common.py @@ -1,11 +1,11 @@ from __future__ import division, absolute_import, print_function import os - -from numpy.testing import run_module_suite, assert_array_equal, dec +import sys import numpy as np from . import util +from numpy.testing import run_module_suite, assert_array_equal, dec def _path(*a): return os.path.join(*((os.path.dirname(__file__),) + a)) @@ -13,6 +13,7 @@ def _path(*a): class TestCommonBlock(util.F2PyTest): sources = [_path('src', 'common', 'block.f')] + @dec.knownfailureif(sys.platform=='win32', msg='Fails with MinGW64 Gfortran (Issue #9673)') def test_common_block(self): self.module.initcb() assert_array_equal(self.module.block.long_bn, |
