Skip to content

Commit a106444

Browse files
author
Diptorup Deb
committed
Skip failing test cases on Windows for now.
1 parent f54205e commit a106444

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

numba_dpex/tests/experimental/test_index_space_ids.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,9 @@ def test_no_item():
174174
)
175175

176176

177+
# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
178+
@skip_windows
177179
def test_get_group_id():
178-
179180
global_size = 100
180181
group_size = 20
181182
num_groups = global_size // group_size
@@ -195,8 +196,9 @@ def test_get_group_id():
195196
assert np.array_equal(ka.asnumpy(), expected)
196197

197198

199+
# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
200+
@skip_windows
198201
def test_get_group_range():
199-
200202
global_size = 100
201203
group_size = 20
202204
num_groups = global_size // group_size
@@ -216,8 +218,9 @@ def test_get_group_range():
216218
assert np.array_equal(ka.asnumpy(), expected)
217219

218220

221+
# TODO: https://github.com/IntelPython/numba-dpex/issues/1308
222+
@skip_windows
219223
def test_get_group_local_range():
220-
221224
global_size = 100
222225
group_size = 20
223226
num_groups = global_size // group_size

0 commit comments

Comments
 (0)