Avoid time.sleep in Python unit tests
Sleeping in tests slows suites and hides synchronization bugs.
#Metadata
#Why it matters
Prefer deterministic waits, polling helpers, or clock fakes.
#Remediation
Inject a clock, shorten waits, or move timing-sensitive coverage to integration tests.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/python/py.testing.time-sleep-in-unit-test.rule.yaml.