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