File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
2
import platform
3
+ import sysconfig
3
4
4
5
import numpy as np
5
6
import pytest
13
14
# essential per https://github.com/scipy/scipy/pull/20487#discussion_r1567057247
14
15
@pytest .mark .skipif (IS_EDITABLE ,
15
16
reason = 'Editable install cannot find .pxd headers.' )
17
+ @pytest .mark .skipif ((platform .system () == 'Windows' and
18
+ sysconfig .get_config_var ('Py_GIL_DISABLED' )),
19
+ reason = 'gh-22039' )
16
20
@pytest .mark .skipif (platform .machine () in ["wasm32" , "wasm64" ],
17
21
reason = "Can't start subprocess" )
18
22
@pytest .mark .skipif (cython is None , reason = "requires cython" )
Original file line number Diff line number Diff line change 1
1
import os
2
2
import platform
3
+ import sysconfig
3
4
4
5
import pytest
5
6
10
11
# essential per https://github.com/scipy/scipy/pull/20487#discussion_r1567057247
11
12
@pytest .mark .skipif (IS_EDITABLE ,
12
13
reason = 'Editable install cannot find .pxd headers.' )
14
+ @pytest .mark .skipif ((platform .system () == 'Windows' and
15
+ sysconfig .get_config_var ('Py_GIL_DISABLED' )),
16
+ reason = 'gh-22039' )
13
17
@pytest .mark .skipif (platform .machine () in ["wasm32" , "wasm64" ],
14
18
reason = "Can't start subprocess" )
15
19
@pytest .mark .skipif (cython is None , reason = "requires cython" )
Original file line number Diff line number Diff line change 1
1
import os
2
2
import platform
3
+ import sysconfig
3
4
4
5
import pytest
5
6
11
12
# essential per https://github.com/scipy/scipy/pull/20487#discussion_r1567057247
12
13
@pytest .mark .skipif (IS_EDITABLE ,
13
14
reason = 'Editable install cannot find .pxd headers.' )
15
+ @pytest .mark .skipif ((platform .system () == 'Windows' and
16
+ sysconfig .get_config_var ('Py_GIL_DISABLED' )),
17
+ reason = 'gh-22039' )
14
18
@pytest .mark .skipif (platform .machine () in ["wasm32" , "wasm64" ],
15
19
reason = "Can't start subprocess" )
16
20
@pytest .mark .skipif (cython is None , reason = "requires cython" )
You can’t perform that action at this time.
0 commit comments