test-fixture-passwords-flagged-by-secret-scanner

Hardcoded test passwords in pytest fixtures are caught by the secret scanner even when they are obviously test values. The workaround is to assign them to a labeled constant (e.g., TEST_PASSWORD = '...') so the scanner recognizes them as intentional test-only fixtures rather than leaked credentials.