Migrate task_navigation_efficiency test assertions to standardized output schema#46475
Merged
m7md7sien merged 1 commit intomohessie/standradize_output/task_navigation_efficiencyfrom Apr 22, 2026
Conversation
Agent-Logs-Url: https://github.com/Azure/azure-sdk-for-python/sessions/af7ce3e2-8f3b-425a-85fd-d9dcfd79552d Co-authored-by: m7md7sien <16615690+m7md7sien@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
m7md7sien
April 22, 2026 22:09
View session
m7md7sien
approved these changes
Apr 22, 2026
92cb5ab
into
mohessie/standradize_output/task_navigation_efficiency
2 checks passed
m7md7sien
added a commit
that referenced
this pull request
Apr 26, 2026
* Standradize Task Navigation Efficiency Output * Update task_navigation_efficiency unit tests to new output schema (#46475) Agent-Logs-Url: https://github.com/Azure/azure-sdk-for-python/sessions/af7ce3e2-8f3b-425a-85fd-d9dcfd79552d Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: m7md7sien <16615690+m7md7sien@users.noreply.github.com> * Change task navigation efficiency threshold to None --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: m7md7sien <16615690+m7md7sien@users.noreply.github.com>
fafhrd91
pushed a commit
to fafhrd91/azure-sdk-for-python
that referenced
this pull request
Apr 28, 2026
* Standradize Task Navigation Efficiency Output * Update task_navigation_efficiency unit tests to new output schema (Azure#46475) Agent-Logs-Url: https://github.com/Azure/azure-sdk-for-python/sessions/af7ce3e2-8f3b-425a-85fd-d9dcfd79552d Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: m7md7sien <16615690+m7md7sien@users.noreply.github.com> * Change task navigation efficiency threshold to None --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: m7md7sien <16615690+m7md7sien@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
task_navigation_efficiencyevaluator's output keys were renamed in this branch (_details→_properties, added_passed), but the unit tests still asserted against the old schema, leaving them broken. This ports the corresponding test-only edits from #46436 (scoped strictly to this evaluator; no source/prompty/other evaluator changes pulled in).tests/unittests/test_task_navigation_efficiency_evaluators.py— update assertion keys:result["task_navigation_efficiency_result"] == "pass"/"fail"→result["task_navigation_efficiency_passed"] is True/Falsetask_navigation_efficiency_details→task_navigation_efficiency_propertiesThe migrated file is byte-identical to its counterpart in #46436. Source in this branch already emits
_passed(bool) and_properties(dict), so assertions line up without any source edits.