Skip to content

Commit

Permalink
Skip the tests for real
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenkaF committed Nov 27, 2023
1 parent 9054bf7 commit 9d0d0d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions cpp/src/arrow/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# under the License.

add_arrow_test(bridge_test PREFIX "arrow-c")
add_arrow_test(dlpack_test)

add_arrow_benchmark(bridge_benchmark)

Expand Down
4 changes: 2 additions & 2 deletions python/pyarrow/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -3570,7 +3570,7 @@ def PyCapsule_IsValid(capsule, name):
]
)
def test_dlpack(value_type, np_type):
if Version(np.__version__) < Version("1.22.0"):
if Version(np.__version__) < Version("1.24.0"):
pytest.skip("No dlpack support in numpy versions older than 1.22.0, "
"strict keyward in assert_array_equal added in numpy version "
"1.24.0")
Expand Down Expand Up @@ -3598,7 +3598,7 @@ def test_dlpack(value_type, np_type):


def test_dlpack_float_16():
if Version(np.__version__) < Version("1.22.0"):
if Version(np.__version__) < Version("1.24.0"):
pytest.skip("No dlpack support in numpy versions older than 1.22.0, "
"strict keyward in assert_array_equal added in numpy version "
"1.24.0")
Expand Down

0 comments on commit 9d0d0d9

Please sign in to comment.