()
| 139 | |
| 140 | @pytest.mark.skipif("not np") |
| 141 | def test_tokenize_discontiguous_numpy_array(): |
| 142 | arr = np.random.random(8) |
| 143 | assert check_tokenize(arr[::2]) != check_tokenize(arr[::3]) |
| 144 | |
| 145 | |
| 146 | @pytest.mark.skipif("not np") |
nothing calls this directly
no test coverage detected