Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[JsonStreamer] Ignore Deprecations in tests#62154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
[JsonStreamer] Ignore Deprecations in tests#62154
Uh oh!
There was an error while loading.Please reload this page.
Conversation
santysisi commentedOct 24, 2025
Im not in my computer now but I think the failure tests are not relevant in the context of the PR |
mtarld commentedOct 25, 2025
Hey@santysisi, thanks for trying to fix this 🙂 Here, we should not ignore the deprecations, as they're not intended. |
xabbuh commentedOct 25, 2025
I agree, closing in favour of#62158, thanks for giving it a try |
Uh oh!
There was an error while loading.Please reload this page.
While rebasing thisPR, I noticed deprecation warnings appearing in the tests. After investigation, it seems to be caused by the addition of
trigger_deprecationsof this otherPR. To resolve this, I’ve added theGroup('legacy')attribute and also usedIgnoreDeprecationsfor the affected tests to prevent these warnings.