Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

TEST: cleanups [skip cirrus][skip azp] #27950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
TEST: cleanups [skip cirrus][skip azp] (#27943)
  • Loading branch information
mattip authored and charris committed Dec 9, 2024
commit e0b53c0133cffcbb9aacb364a3a721c0ef4612f5
1 change: 0 additions & 1 deletion 1 numpy/f2py/tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def check_language(lang, code_snippet=None):
return runmeson.returncode == 0
finally:
shutil.rmtree(tmpdir)
return False


fortran77_code = '''
Expand Down
7 changes: 4 additions & 3 deletions 7 numpy/ma/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import numpy._core.umath as umath
from numpy.exceptions import AxisError
from numpy.testing import (
assert_raises, assert_warns, suppress_warnings, IS_WASM
assert_raises, assert_warns, suppress_warnings, IS_WASM, temppath
)
from numpy.testing._private.utils import requires_memory
from numpy import ndarray
Expand Down Expand Up @@ -1019,8 +1019,9 @@ def test_maskedarray_tofile_raises_notimplementederror(self):
xm = masked_array([1, 2, 3], mask=[False, True, False])
# Test case to check the NotImplementedError.
# It is not implemented at this point of time. We can change this in future
with pytest.raises(NotImplementedError):
np.save('xm.np', xm)
with temppath(suffix='.npy') as path:
with pytest.raises(NotImplementedError):
np.save(path, xm)


class TestMaskedArrayArithmetic:
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.