Browse Source

Add some environment output confirmation.

pull/1114/head
James Jackson-South 6 years ago
parent
commit
9ee753091c
  1. 3
      tests/ImageSharp.Tests/TestUtilities/Tests/TestEnvironmentTests.cs

3
tests/ImageSharp.Tests/TestUtilities/Tests/TestEnvironmentTests.cs

@ -22,6 +22,9 @@ namespace SixLabors.ImageSharp.Tests
public TestEnvironmentTests(ITestOutputHelper output)
{
this.Output = output;
this.Output.WriteLine($"Test Environment is CI {TestEnvironment.RunsOnCI}");
this.Output.WriteLine($"Test Environment is NET Core. {!string.IsNullOrWhiteSpace(TestEnvironment.NetCoreVersion)}");
}
private ITestOutputHelper Output { get; }

Loading…
Cancel
Save