Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
StackExchange.Redis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
StackExchange.Redis
Commits
69ce0444
Commit
69ce0444
authored
Mar 16, 2018
by
Nick Craver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tests: add OS to output
Trying to figure out what's happening with Appveyor vs. local socket exceptions.
parent
f9c7e582
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
Extensions.cs
StackExchange.Redis.Tests/Helpers/Extensions.cs
+3
-1
StackExchange.Redis.Tests.csproj
StackExchange.Redis.Tests/StackExchange.Redis.Tests.csproj
+1
-0
No files found.
StackExchange.Redis.Tests/Helpers/Extensions.cs
View file @
69ce0444
using
Xunit.Abstractions
;
using
System.Runtime.InteropServices
;
using
Xunit.Abstractions
;
namespace
StackExchange.Redis.Tests.Helpers
namespace
StackExchange.Redis.Tests.Helpers
{
{
...
@@ -15,6 +16,7 @@ public static void WriteFrameworkVersion(this ITestOutputHelper output)
...
@@ -15,6 +16,7 @@ public static void WriteFrameworkVersion(this ITestOutputHelper output)
#else
#else
output
.
WriteLine
(
"Compiled under <unknown framework>"
);
output
.
WriteLine
(
"Compiled under <unknown framework>"
);
#endif
#endif
output
.
WriteLine
(
"Running on: "
+
RuntimeInformation
.
OSDescription
);
}
}
}
}
}
}
StackExchange.Redis.Tests/StackExchange.Redis.Tests.csproj
View file @
69ce0444
...
@@ -18,6 +18,7 @@
...
@@ -18,6 +18,7 @@
<PackageReference Include="Jil" Version="2.15.4" />
<PackageReference Include="Jil" Version="2.15.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
<PackageReference Include="Moq" Version="4.7.99" />
<PackageReference Include="Moq" Version="4.7.99" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(xUnitVersion)" />
<DotNetCliToolReference Include="dotnet-xunit" Version="$(xUnitVersion)" />
<DotNetCliToolReference Include="dotnet-xunit" Version="$(xUnitVersion)" />
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment