(self)
| 116 | |
| 117 | @pytest.fixture(scope="class") |
| 118 | def phys_reader(self): |
| 119 | phys_reader = _ZipPkgReader(zip_pkg_path) |
| 120 | yield phys_reader |
| 121 | phys_reader.close() |
| 122 | |
| 123 | @pytest.fixture |
| 124 | def pkg_file_(self, request): |
nothing calls this directly
no test coverage detected