-
Notifications
You must be signed in to change notification settings - Fork 163
Closed as not planned
Closed as not planned
Copy link
Labels
area | package managersChanges related to implementations of package managersChanges related to implementations of package managersplugin | artifactRelated to the `prepare/artifact` plugin.Related to the `prepare/artifact` plugin.
Description
List Packages should return a list of PackageInfo Objects, Instead of list of strings.
tmt/tmt/package_managers/__init__.py
Lines 307 to 319 in bec9a8c
| def list_packages(self, repository: "Repository") -> list[str]: | |
| """ | |
| List packages available in the specified repository. | |
| :param repository: The repository to query. | |
| :returns: A list of package names available in the repository. | |
| """ | |
| script = self.engine.list_packages(repository) | |
| output = self.guest.execute(script) | |
| stdout = output.stdout | |
| if stdout is None: | |
| raise GeneralError("Repository query provided no output") |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area | package managersChanges related to implementations of package managersChanges related to implementations of package managersplugin | artifactRelated to the `prepare/artifact` plugin.Related to the `prepare/artifact` plugin.