Skip to content

Commit 96dc138

Browse files
committed
Debugging integ tests
1 parent 9b308ae commit 96dc138

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public async Task InitializeAsync()
4848

4949
public Task DisposeAsync()
5050
{
51-
#if !DEBUG
51+
#if !DEBUG || true
5252
foreach (var tempPath in _tempPaths)
5353
{
5454
LambdaToolsHelper.CleanUp(tempPath);

0 commit comments

Comments
 (0)