Skip to content

Commit 5619e3f

Browse files
fix: remove parametrize decorator from test_paraquet.py
Signed-off-by: rushikesh.adhav <adhavrushikesh6@gmail.com>
1 parent 031d2e1 commit 5619e3f

File tree

2 files changed

+0
-40
lines changed

2 files changed

+0
-40
lines changed

python/ray/data/_internal/datasource/parquet_datasource.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -279,14 +279,6 @@ def combine_predicates(
279279

280280

281281
class ParquetDatasource(Datasource):
282-
"""Parquet datasource, for reading and writing Parquet files.
283-
284-
The primary difference from read_parquet is that this uses
285-
PyArrow's `ParquetDataset` abstraction for dataset reads, and thus offers
286-
automatic Arrow dataset schema inference and row count collection at the
287-
cost of some potential performance and/or compatibility penalties.
288-
"""
289-
290282
_FILE_EXTENSIONS = ["parquet"]
291283

292284
def __init__(

python/ray/data/tests/test_parquet.py

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -231,38 +231,6 @@ def test_parquet_read_random_shuffle(
231231
assert not all(all_rows_matched)
232232

233233

234-
@pytest.mark.parametrize(
235-
"fs,data_path",
236-
[
237-
(None, lazy_fixture("local_path")),
238-
(lazy_fixture("local_fs"), lazy_fixture("local_path")),
239-
(lazy_fixture("s3_fs"), lazy_fixture("s3_path")),
240-
(
241-
lazy_fixture("s3_fs_with_space"),
242-
lazy_fixture("s3_path_with_space"),
243-
), # Path contains space.
244-
(
245-
lazy_fixture("s3_fs_with_anonymous_crendential"),
246-
lazy_fixture("s3_path_with_anonymous_crendential"),
247-
),
248-
],
249-
)
250-
@pytest.mark.parametrize(
251-
"fs,data_path",
252-
[
253-
(None, lazy_fixture("local_path")),
254-
(lazy_fixture("local_fs"), lazy_fixture("local_path")),
255-
(lazy_fixture("s3_fs"), lazy_fixture("s3_path")),
256-
(
257-
lazy_fixture("s3_fs_with_space"),
258-
lazy_fixture("s3_path_with_space"),
259-
), # Path contains space.
260-
(
261-
lazy_fixture("s3_fs_with_anonymous_crendential"),
262-
lazy_fixture("s3_path_with_anonymous_crendential"),
263-
),
264-
],
265-
)
266234
@pytest.mark.parametrize(
267235
"fs,data_path",
268236
[

0 commit comments

Comments
 (0)