-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #476 from zapta/develop
Clean up of integration tests
- Loading branch information
Showing
47 changed files
with
1,115 additions
and
849 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -138,6 +138,7 @@ def _list(apio_ctx: ApioContext, verbose: bool) -> int: | |
apio packages --install oss-cad-suite # Install a specific package. | ||
apio packages --install [email protected] # Install a specific version. | ||
apio packages --uninstall # Uninstall all packages. | ||
apio packages --uninstall --sayyes # Same but does not ask yes/no. | ||
apio packages --uninstall oss-cad-suite # Uninstall only given package(s). | ||
apio packages --fix # Fix package errors. | ||
|
@@ -223,6 +224,10 @@ def cli( | |
cmd_util.check_at_most_one_param(cmd_ctx, nameof(list_, packages)) | ||
cmd_util.check_at_most_one_param(cmd_ctx, nameof(fix, packages)) | ||
|
||
cmd_util.check_at_most_one_param(cmd_ctx, nameof(sayyes, list_)) | ||
cmd_util.check_at_most_one_param(cmd_ctx, nameof(sayyes, install)) | ||
cmd_util.check_at_most_one_param(cmd_ctx, nameof(sayyes, fix)) | ||
|
||
# -- Create the apio context. | ||
|
||
apio_ctx = ApioContext(project_dir=project_dir, load_project=False) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.