(version)
| 171 | |
| 172 | @pytest.mark.pandas |
| 173 | def test_float_no_nulls(version): |
| 174 | data = {} |
| 175 | numpy_dtypes = ['f4', 'f8'] |
| 176 | num_values = 100 |
| 177 | |
| 178 | for dtype in numpy_dtypes: |
| 179 | values = np.random.randn(num_values) |
| 180 | data[dtype] = values.astype(dtype) |
| 181 | |
| 182 | df = pd.DataFrame(data) |
| 183 | _check_pandas_roundtrip(df, version=version) |
| 184 | |
| 185 | |
| 186 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected