Skip to content

Commit

Permalink
Fix missing attachement processor (#3644)
Browse files Browse the repository at this point in the history
Fix missing attachement processor
  • Loading branch information
Evangelink committed May 17, 2022
1 parent a12cd93 commit b786577
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -361,12 +361,12 @@ private void TestRunRequest_OnRunCompletion(object sender, TestRunCompleteEventA
{
_output.Warning(false, CommandLineResources.SuggestTestAdapterPathIfNoTestsIsFound);
}
}

// Collect tests session artifacts for post processing
if (_commandLineOptions.ArtifactProcessingMode == ArtifactProcessingMode.Collect)
{
_artifactProcessingManager.CollectArtifacts(e, RunSettingsManager.Instance.ActiveRunSettings.SettingsXml);
}
// Collect tests session artifacts for post processing
if (_commandLineOptions.ArtifactProcessingMode == ArtifactProcessingMode.Collect)
{
_artifactProcessingManager.CollectArtifacts(e, RunSettingsManager.Instance.ActiveRunSettings.SettingsXml);
}
}
}
Expand Down

0 comments on commit b786577

Please sign in to comment.