MCPcopy Create free account
hub / github.com/apache/arrow / test_compressed_input_gzip

Function test_compressed_input_gzip

python/pyarrow/tests/test_io.py:1596–1601  ·  view source on GitHub ↗
(tmpdir)

Source from the content-addressed store, hash-verified

1594
1595@pytest.mark.gzip
1596def test_compressed_input_gzip(tmpdir):
1597 data = b"some test data\n" * 10 + b"eof\n"
1598 fn = str(tmpdir / "compressed_input_test.gz")
1599 with gzip.open(fn, "wb") as f:
1600 f.write(data)
1601 check_compressed_input(data, fn, "gzip")
1602
1603
1604def test_compressed_input_bz2(tmpdir):

Callers

nothing calls this directly

Calls 3

check_compressed_inputFunction · 0.85
openMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected