rok commented on code in PR #50907:
URL: https://github.com/apache/arrow/pull/50907#discussion_r3846075859


##########
python/pyarrow/tests/test_sparse_tensor.py:
##########
@@ -254,6 +258,28 @@ def test_sparse_csr_matrix_from_dense(dtype_str, 
arrow_type):
     assert np.array_equal(indices, result_indices)
 
 
[email protected]('pa_class,sc_class', [
+    pytest.param(pa.SparseCSRMatrix, csr_matrix, id='CSR'),
+    pytest.param(pa.SparseCSCMatrix, csc_matrix, id='CSC'),
+])
+def test_sparse_csx_matrix_from_1d(pa_class, sc_class):
+    if sc_class is None:
+        pytest.skip('scipy not available')

Review Comment:
   Elsewhere in this file we use:
   ```python
   @pytest.mark.skipif(not coo_matrix, reason="requires scipy")
   ```
   as a test decorator. Let's do the same here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to