This commit is contained in:
Brett Samblanet 2024-10-14 12:00:40 -07:00 коммит произвёл Fabio Cavalcante
Родитель a4f8ff86e1
Коммит 76e5bb1212
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -50,7 +50,7 @@ namespace Microsoft.Azure.Functions.SdkTests
/// <summary>
/// ZipDeploy should use PublishUrl if not null or empty, else use SiteName.
/// </summary>
[Theory]
[Theory(Skip = "https://github.com/Azure/azure-functions-dotnet-worker/issues/2781")]
[InlineData("https://sitename.scm.azurewebsites.net", null, false, "https://sitename.scm.azurewebsites.net/api/zipdeploy?isAsync=true")]
[InlineData("https://sitename.scm.azurewebsites.net", null, true, "https://sitename.scm.azurewebsites.net/api/publish?RemoteBuild=false")]
[InlineData("https://sitename.scm.azurewebsites.net", "", false, "https://sitename.scm.azurewebsites.net/api/zipdeploy?isAsync=true")]
@ -96,7 +96,7 @@ namespace Microsoft.Azure.Functions.SdkTests
await RunZipDeployAsyncTest(publishUrl, siteName, UserAgentVersion, useBlobContainerDeploy: false, HttpStatusCode.OK, verifyStep);
}
[Theory]
[Theory(Skip = "https://github.com/Azure/azure-functions-dotnet-worker/issues/2781")]
[InlineData(HttpStatusCode.OK, false, true)]
[InlineData(HttpStatusCode.OK, true, true)]
[InlineData(HttpStatusCode.Accepted, false, true)]