@@ -739,6 +739,7 @@ def _test_get_orthogonal_selection_3d(
739739 _test_get_orthogonal_selection (a , z , selection )
740740
741741
742+ @pytest .mark .slow_wasm
742743def test_get_orthogonal_selection_3d (store : StorePath ) -> None :
743744 # setup
744745 a = np .arange (100000 , dtype = int ).reshape (200 , 50 , 10 )
@@ -801,6 +802,7 @@ def _test_set_orthogonal_selection(
801802 assert_array_equal (a , z [:])
802803
803804
805+ @pytest .mark .slow_wasm
804806def test_set_orthogonal_selection_1d (store : StorePath ) -> None :
805807 # setup
806808 v = np .arange (1050 , dtype = int )
@@ -846,6 +848,7 @@ def test_set_item_1d_last_two_chunks(store: StorePath):
846848 np .testing .assert_equal (z ["zoo" ][()], np .array (1 ))
847849
848850
851+ @pytest .mark .slow_wasm
849852def _test_set_orthogonal_selection_2d (
850853 v : npt .NDArray [np .int_ ],
851854 a : npt .NDArray [np .int_ ],
@@ -1150,6 +1153,7 @@ def test_set_coordinate_selection_1d(store: StorePath) -> None:
11501153 z .vindex [selection ] = 42 # type:ignore[index]
11511154
11521155
1156+ @pytest .mark .slow_wasm
11531157def test_set_coordinate_selection_2d (store : StorePath ) -> None :
11541158 # setup
11551159 v = np .arange (10000 , dtype = int ).reshape (1000 , 10 )
@@ -1333,6 +1337,7 @@ def _test_set_block_selection(
13331337 assert_array_equal (a , z [:])
13341338
13351339
1340+ @pytest .mark .slow_wasm
13361341def test_set_block_selection_1d (store : StorePath ) -> None :
13371342 # setup
13381343 v = np .arange (1050 , dtype = int )
@@ -1351,6 +1356,7 @@ def test_set_block_selection_1d(store: StorePath) -> None:
13511356 z .blocks [selection_bad ] = 42 # type:ignore[index]
13521357
13531358
1359+ @pytest .mark .slow_wasm
13541360def test_set_block_selection_2d (store : StorePath ) -> None :
13551361 # setup
13561362 v = np .arange (10000 , dtype = int ).reshape (1000 , 10 )
0 commit comments