(self)
| 121 | |
| 122 | @property |
| 123 | def remote_dpdk_build_dir(self) -> PurePath: |
| 124 | if self._build_target_config: |
| 125 | return self.main_session.join_remote_path( |
| 126 | self._remote_dpdk_dir, self._build_target_config.name |
| 127 | ) |
| 128 | else: |
| 129 | return self.main_session.join_remote_path(self._remote_dpdk_dir, "build") |
| 130 | |
| 131 | @property |
| 132 | def dpdk_version(self) -> str: |
nothing calls this directly
no test coverage detected