diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2023-04-11 09:36:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 09:36:35 +0200 |
commit | 34417a5d3470dc143ccd6935057b25b045306b49 (patch) | |
tree | 1c3d2a5f06091ea56b73f766ae794609228ca771 /numpy/core | |
parent | 93a97649aa0aefc0ee8ee5fc7cb78063bfe67255 (diff) | |
parent | 0ca2a6f9f0a4b2f7b99757636c74d11412a43f0e (diff) | |
download | numpy-34417a5d3470dc143ccd6935057b25b045306b49.tar.gz |
Merge pull request #23569 from andyfaff/new_policy
TST: try readding test_new_policy on musl
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/tests/test_mem_policy.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/core/tests/test_mem_policy.py b/numpy/core/tests/test_mem_policy.py index 79abdbf1e..d5dfbc38b 100644 --- a/numpy/core/tests/test_mem_policy.py +++ b/numpy/core/tests/test_mem_policy.py @@ -5,7 +5,7 @@ import pytest import numpy as np import threading import warnings -from numpy.testing import extbuild, assert_warns, IS_WASM, IS_MUSL +from numpy.testing import extbuild, assert_warns, IS_WASM import sys @@ -358,7 +358,6 @@ def test_thread_locality(get_module): assert np.core.multiarray.get_handler_name() == orig_policy_name -@pytest.mark.xfail(IS_MUSL, reason="gh23050") @pytest.mark.slow def test_new_policy(get_module): a = np.arange(10) |