We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 428ee84 commit 9b1d449Copy full SHA for 9b1d449
tests/test_common.py
@@ -91,7 +91,10 @@ def test_to_device_host(library):
91
@pytest.mark.parametrize("target_library", is_array_functions.keys())
92
@pytest.mark.parametrize("source_library", is_array_functions.keys())
93
def test_asarray_cross_library(source_library, target_library, request):
94
- if source_library == "dask.array" and target_library == "torch":
+ if (
95
+ (source_library == "dask.array" and target_library == "torch")
96
+ or (source_library == "torch" and target_library == "dask.array")
97
+ ):
98
# Allow rest of test to execute instead of immediately xfailing
99
# xref https://github.com/pandas-dev/pandas/issues/38902
100
0 commit comments