(version)
| 450 | |
| 451 | @pytest.mark.pandas |
| 452 | def test_multithreaded_read(version): |
| 453 | data = {f'c{i}': [''] * 10 |
| 454 | for i in range(100)} |
| 455 | df = pd.DataFrame(data) |
| 456 | _check_pandas_roundtrip(df, use_threads=True, version=version) |
| 457 | |
| 458 | |
| 459 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected