Ensure that Run tests (http) is actually testing http - #3340
Open
Chidozie Ononiwu (chidozieononiwu) wants to merge 1 commit into
Open
Ensure that Run tests (http) is actually testing http#3340Chidozie Ononiwu (chidozieononiwu) wants to merge 1 commit into
Chidozie Ononiwu (chidozieononiwu) wants to merge 1 commit into
Conversation
Chidozie Ononiwu (chidozieononiwu)
requested review from
a team
as code owners
August 20, 2026 21:40
|
Azure Pipelines: Successfully started running 1 pipeline(s). There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Azure Pipelines live-test job template to ensure the “Run tests (http)” step actually executes the test suite using the HTTP transport, aligning the pipeline behavior with the step’s intent and label.
Changes:
- Sets
MCP_TEST_TRANSPORTtohttpfor the “Run tests (http) - az pwsh” task to force HTTP-based test transport selection during that run.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Copilot started reviewing on behalf of
Chidozie Ononiwu (chidozieononiwu)
August 21, 2026 00:14
View session
Member
|
/azp run mcp - pullrequest - live |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
| env: | ||
| SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
| AZURE_MCP_COLLECT_TELEMETRY: 'false' | ||
| MCP_TEST_TRANSPORT: 'http' |
Contributor
There was a problem hiding this comment.
This is already handled via AdditionalParameters: "@{ UseHttpTransport = true }" but I like this better. Can you clean up everything using AdditionalParameters: "@{ UseHttpTransport = true }" to stop using it.
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.
This pull request introduces a minor configuration update to the
live-test.ymlpipeline. The change sets theMCP_TEST_TRANSPORTenvironment variable to'http', which may affect how tests communicate during execution.MCP_TEST_TRANSPORTenvironment variable with the value'http'to thejobssection oflive-test.yml, potentially altering the test transport protocol.