Skip to content

Commit 67529b8

Browse files
committed
test: include gzip in default compression level tests for write_parquet
1 parent fe502e8 commit 67529b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/tests/test_dataframe.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,10 +1113,10 @@ def test_write_compressed_parquet_invalid_compression(df, tmp_path, compression)
11131113
df.write_parquet(str(path), compression=compression)
11141114

11151115

1116-
# Test write_parquet with zstd, brotli default compression level,
1116+
# Test write_parquet with zstd, brotli, gzip default compression level,
11171117
# ie don't specify compression level
11181118
# should complete without error
1119-
@pytest.mark.parametrize("compression", ["zstd", "brotli"])
1119+
@pytest.mark.parametrize("compression", ["zstd", "brotli", "gzip"])
11201120
def test_write_compressed_parquet_default_compression_level(df, tmp_path, compression):
11211121
path = tmp_path
11221122

0 commit comments

Comments
 (0)