Skip to content

Commit 0bd63a9

Browse files
committed
Debugging integ tests
1 parent 9b308ae commit 0bd63a9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Libraries/test/Amazon.Lambda.RuntimeSupport.Tests/Amazon.Lambda.RuntimeSupport.IntegrationTests/BaseCustomRuntimeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ private string GetDeploymentZipPath()
352352
if (!File.Exists(deploymentZipFile))
353353
{
354354
var message = new StringBuilder();
355-
message.AppendLine($"Deployment package not found at expected path: {deploymentZipFile}");
355+
message.AppendLine($"Deployment package for {DeploymentPackageZipRelativePath} not found at expected path: {deploymentZipFile}");
356356
message.AppendLine("Available Test Bundles:");
357357
foreach (var kvp in _fixture.TestAppPaths)
358358
{

Libraries/test/Amazon.Lambda.RuntimeSupport.Tests/Amazon.Lambda.RuntimeSupport.IntegrationTests/IntegrationTestFixture.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ public async Task InitializeAsync()
4949
public Task DisposeAsync()
5050
{
5151
#if !DEBUG
52-
foreach (var tempPath in _tempPaths)
53-
{
54-
LambdaToolsHelper.CleanUp(tempPath);
55-
}
52+
//foreach (var tempPath in _tempPaths)
53+
//{
54+
// LambdaToolsHelper.CleanUp(tempPath);
55+
//}
5656
#endif
5757

5858
return Task.CompletedTask;

0 commit comments

Comments
 (0)