(s3, s3so)
| 425 | |
| 426 | |
| 427 | def test_modification_time_read_bytes(s3, s3so): |
| 428 | with s3_context("compress", files): |
| 429 | _, a = read_bytes("s3://compress/test/accounts.*", anon=True, **s3so) |
| 430 | _, b = read_bytes("s3://compress/test/accounts.*", anon=True, **s3so) |
| 431 | |
| 432 | assert [aa._key for aa in concat(a)] == [bb._key for bb in concat(b)] |
| 433 | |
| 434 | with s3_context("compress", valmap(double, files)): |
| 435 | _, c = read_bytes("s3://compress/test/accounts.*", anon=True, **s3so) |
| 436 | |
| 437 | assert [aa._key for aa in concat(a)] != [cc._key for cc in concat(c)] |
| 438 | |
| 439 | |
| 440 | @pytest.fixture(params=["pyarrow"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…