()
| 126 | |
| 127 | @pytest.mark.skipif("not np") |
| 128 | def test_tokenize_numpy_array_consistent_on_values(): |
| 129 | assert check_tokenize( |
| 130 | np.random.RandomState(1234).random_sample(1000) |
| 131 | ) == check_tokenize(np.random.RandomState(1234).random_sample(1000)) |
| 132 | |
| 133 | |
| 134 | @pytest.mark.skipif("not np") |
nothing calls this directly
no test coverage detected
searching dependent graphs…