Skip to content

Commit eec946e

Browse files
committed
Mark signature tests to run in CI
1 parent e455a22 commit eec946e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/numpy.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
# waiting on NumPy to allow/revert distinct NaNs for np.unique
4444
# https://github.com/numpy/numpy/issues/20326#issuecomment-1012380448
4545
array_api_tests/test_set_functions.py
46+
47+
# missing copy arg
48+
array_api_tests/test_signatures.py::test_func_signature[reshape]
49+
4650
# https://github.com/numpy/numpy/issues/21211
4751
array_api_tests/test_special_cases.py::test_iop[__iadd__(x1_i is -0 and x2_i is -0) -> -0]
4852
# https://github.com/numpy/numpy/issues/21213

array_api_tests/test_signatures.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
from ._array_module import mod as xp
1111
from .stubs import array_methods, category_to_funcs, extension_to_funcs
1212

13+
pytestmark = pytest.mark.ci
14+
1315
kind_to_str: Dict[Parameter, str] = {
1416
Parameter.POSITIONAL_OR_KEYWORD: "normal argument",
1517
Parameter.POSITIONAL_ONLY: "pos-only argument",

0 commit comments

Comments
 (0)