(tempdir)
| 2788 | |
| 2789 | @pytest.mark.parquet |
| 2790 | def test_open_dataset_unsupported_format(tempdir): |
| 2791 | _, path = _create_single_file(tempdir) |
| 2792 | with pytest.raises(ValueError, match="format 'blabla' is not supported"): |
| 2793 | ds.dataset([path], format="blabla") |
| 2794 | |
| 2795 | |
| 2796 | @pytest.mark.parquet |
nothing calls this directly
no test coverage detected