Skip to content

Commit 27ebdcc

Browse files
acceptance test temp fix
1 parent 04ea6a1 commit 27ebdcc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ServiceControl.AcceptanceTesting/NServiceBusAcceptanceTest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ public void TearDown()
5050

5151
var scenarioContext = runDescriptor.ScenarioContext;
5252

53-
if (Environment.GetEnvironmentVariable("CI") != "true" || Environment.GetEnvironmentVariable("VERBOSE_TEST_LOGGING")?.ToLower() == "true")
54-
{
55-
TestContext.Out.WriteLine($@"Test settings:
53+
// if (Environment.GetEnvironmentVariable("CI") != "true" || Environment.GetEnvironmentVariable("VERBOSE_TEST_LOGGING")?.ToLower() == "true")
54+
// {
55+
TestContext.Out.WriteLine($@"Test settings:
5656
{string.Join(Environment.NewLine, runDescriptor.Settings.Select(setting => $" {setting.Key}: {setting.Value}"))}");
5757

58-
TestContext.Out.WriteLine($@"Context:
58+
TestContext.Out.WriteLine($@"Context:
5959
{string.Join(Environment.NewLine, scenarioContext.GetType().GetProperties().Select(p => $"{p.Name} = {p.GetValue(scenarioContext, null)}"))}");
60-
}
60+
// }
6161

6262
if (TestExecutionContext.CurrentContext.CurrentResult.ResultState == ResultState.Failure || TestExecutionContext.CurrentContext.CurrentResult.ResultState == ResultState.Error)
6363
{

0 commit comments

Comments
 (0)