diff options
Diffstat (limited to 'numpy/f2py/tests/test_regression.py')
-rw-r--r-- | numpy/f2py/tests/test_regression.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/numpy/f2py/tests/test_regression.py b/numpy/f2py/tests/test_regression.py index 7b622d5b1..3adae635d 100644 --- a/numpy/f2py/tests/test_regression.py +++ b/numpy/f2py/tests/test_regression.py @@ -27,17 +27,3 @@ class TestIntentInOut(util.F2PyTest): x = np.arange(3, dtype=np.float32) self.module.foo(x) assert_equal(x, [3, 1, 2]) - -@pytest.mark.parametrize('code', [ - 'program test_f2py\nend program test_f2py', - b'program test_f2py\nend program test_f2py', - ]) -def test_compile(tmpdir, code): - # Make sure we can compile str and bytes gh-12796 - cwd = os.getcwd() - try: - os.chdir(str(tmpdir)) - ret = np.f2py.compile(code, modulename='test1_f2py', extension='.f90') - assert_equal(ret, 0) - finally: - os.chdir(cwd) |