(tmpdir)
| 1619 | |
| 1620 | @pytest.mark.gzip |
| 1621 | def test_compressed_input_gzip(tmpdir): |
| 1622 | data = b"some test data\n" * 10 + b"eof\n" |
| 1623 | fn = str(tmpdir / "compressed_input_test.gz") |
| 1624 | with gzip.open(fn, "wb") as f: |
| 1625 | f.write(data) |
| 1626 | check_compressed_input(data, fn, "gzip") |
| 1627 | |
| 1628 | |
| 1629 | def test_compressed_input_bz2(tmpdir): |
nothing calls this directly
no test coverage detected