pytest-test-passwords-trigger-secret-scanner-false-positive

Hardcoded test password strings in pytest fixtures (e.g., ‘TestPassword123!’) trigger the secret scanner even in test files. Fix: extract them to a clearly labeled constant (e.g., TEST_PASSWORD = ‘TestPassword123!’) so the scanner recognizes them as intentional test fixtures rather than leaked credentials. Apply this pattern to all integration test conftest.py files.