(self)
| 182 | |
| 183 | @pytest.mark.slow |
| 184 | def test_format_2_0(self): |
| 185 | dt = [(f"{i}" * 100, float) for i in range(500)] |
| 186 | a = np.ones(1000, dtype=dt) |
| 187 | with warnings.catch_warnings(record=True): |
| 188 | warnings.filterwarnings('always', '', UserWarning) |
| 189 | self.check_roundtrips(a) |
| 190 | |
| 191 | |
| 192 | class TestSaveLoad(RoundtripTest): |
nothing calls this directly
no test coverage detected