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