()
| 159 | |
| 160 | @pytest.mark.skipif("not np") |
| 161 | def test_tokenize_numpy_scalar_string_rep(): |
| 162 | # Test tokenizing numpy scalars doesn't depend on their string representation |
| 163 | with np.printoptions(formatter={"all": lambda x: "foo"}): |
| 164 | assert check_tokenize(np.array(1)) != check_tokenize(np.array(2)) |
| 165 | |
| 166 | |
| 167 | @pytest.mark.skipif("not np") |
nothing calls this directly
no test coverage detected
searching dependent graphs…