()
| 197 | |
| 198 | |
| 199 | def test_pex_builder_deterministic_timestamp(): |
| 200 | # type: () -> None |
| 201 | pb = PEXBuilder() |
| 202 | with temporary_dir() as td: |
| 203 | target = os.path.join(td, "foo.pex") |
| 204 | pb.build(target, deterministic=True) |
| 205 | with zipfile.ZipFile(target) as zf: |
| 206 | assert all(zinfo.date_time == (1980, 1, 1, 0, 0, 0) for zinfo in zf.infolist()) |
| 207 | |
| 208 | |
| 209 | def test_pex_builder_script_from_pex_path(tmpdir): |
nothing calls this directly
no test coverage detected