-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ape plugins list showed core plugins when it was not supposed to (…
- Loading branch information
1 parent
c9ffc88
commit 967f3cd
Showing
5 changed files
with
18 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import pytest | ||
|
||
from tests.integration.cli.utils import skip_projects_except | ||
|
||
|
||
@pytest.mark.xfail(strict=False, reason="Github rate limiting issues") | ||
@skip_projects_except(["test"]) # Only run on single project to prevent rate-limiting in CI/CD | ||
def test_list_excludes_core_plugins(ape_cli, runner): | ||
result = runner.invoke(ape_cli, ["plugins", "list"]) | ||
assert result.exit_code == 0, result.output | ||
assert "console" not in result.output, "console is not supposed to be in Installed Plugins" | ||
assert "networks" not in result.output, "networks is not supposed to be in Installed Plugins" | ||
assert "geth" not in result.output, "networks is not supposed to be in Installed Plugins" |