Generic Patterns : For base pytest patterns (fixtures, mocking, parametrize, markers), see the skill. This skill covers Prowler-specific conventions only. Full Documentation : CRITICAL: Provider-Specific Testing | Provider | Mocking Approach | Decorator | |----------|------------------|-----------| | AWS | library | | | Azure, GCP, K8s, others | | None | NEVER use moto for non-AWS providers. NEVER use MagicMock for AWS. --- AWS Check Test Pattern Critical : Always import the check INSIDE the mock.patch context to ensure proper client mocking. --- Azure Check Test Pattern NO moto decorator. Us…