Skip to content

Commit c92daee

Browse files
Disable failing test and increase test-proxy parsing time (Azure#26004)
* Revert single instance test-proxy * Allow more time to get port * Move mismatch check * Remove method * Ignore test * revert * Add back singleton * line
1 parent 72510aa commit c92daee

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sdk/core/Azure.Core.TestFramework/src/TestProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ private TestProxy(string proxyPath)
9898
});
9999

100100
int lines = 0;
101-
while ((_proxyPortHttp == null || _proxyPortHttps == null) && lines++ < 20)
101+
while ((_proxyPortHttp == null || _proxyPortHttps == null) && lines++ < 50)
102102
{
103103
string outputLine = _testProxyProcess.StandardOutput.ReadLine();
104104
// useful for debugging

sdk/core/Azure.Core/tests/ClientTestBaseMultiVersionTestsWithSpecificVersions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public ClientTestBaseMultiVersionTestsWithSpecificVersions(bool isAsync, TestCli
2828
}
2929

3030
[Test]
31+
[Ignore("Sparse checkout issue when running resource manager pipeline")]
3132
public async Task HasValidVersion()
3233
{
3334
var testClientOptions = new TestClientOptions(_version) { Transport = new MockTransport(new MockResponse(200))};

0 commit comments

Comments
 (0)