Browse Source

Add some environment output confirmation.

af/octree-no-pixelmap
James Jackson-South 6 years ago
parent
commit
800a1b8326
  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) public TestEnvironmentTests(ITestOutputHelper output)
{ {
this.Output = 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; } private ITestOutputHelper Output { get; }

Loading…
Cancel
Save