Show test plugin information.
()
| 31 | |
| 32 | @click.command("test-info") |
| 33 | def test_info_cmd() -> None: |
| 34 | """ |
| 35 | Show test plugin information. |
| 36 | """ |
| 37 | from ggshield.core import ui |
| 38 | |
| 39 | ui.display_heading("Test Plugin Info") |
| 40 | ui.display_info(f" Version: {__version__}") |
| 41 | ui.display_info(" Capabilities: COMMAND") |
| 42 | ui.display_info(" This is a test plugin to verify the plugin system works.") |
| 43 | |
| 44 | |
| 45 | class TestPlugin(GGShieldPlugin): |
nothing calls this directly
no test coverage detected