Flaky/order-dependent test: test_cloud_provider_prompt_filters_disallowed_metadata #174
Labels
No labels
area:ai
area:ci-cd
area:notifications
area:observability
area:public-pages
backlog
bug
duplicate
enhancement
help wanted
invalid
question
type:decision
type:feature
type:infra
type:maintenance
type:security
v1.0.1
v1.1.0
v1.2.0
v1.3.0
v2.0.0
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
rbrooks/WeatherBot#174
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Observed during #142 verification on the dev server:
tests/test_ai_summarizer.py::test_cloud_provider_prompt_filters_disallowed_metadatafailed in one full-suite run onfeat/event-export, then passed: in isolation, when run directly after the new export tests, and in an immediate full-suite rerun of the identical tree. The branch touches no AI code, so this is a pre-existing order-dependent or flaky failure — likely shared mutable state (settings cache, provider registry, or similar) leaking from some earlier test under one particular ordering.Suggest folding into #141's test-infrastructure pass: reproduce with
pytest -p no:randomlyorderings or--last-failedbisection, find the polluting test, and fix the shared-state leak rather than the symptom.