Class to hold important versions within the build target. This is very similar to the NodeInfo class, it just instead holds information for the build target.
| 197 | |
| 198 | @dataclass(slots=True, frozen=True) |
| 199 | class BuildTargetInfo: |
| 200 | """Class to hold important versions within the build target. |
| 201 | |
| 202 | This is very similar to the NodeInfo class, it just instead holds information |
| 203 | for the build target. |
| 204 | """ |
| 205 | |
| 206 | dpdk_version: str |
| 207 | compiler_version: str |
| 208 | |
| 209 | |
| 210 | class TestSuiteConfigDict(TypedDict): |
no outgoing calls
no test coverage detected