Skip to content

Commit

Permalink
Merge pull request #252 from snakefoot/master
Browse files Browse the repository at this point in the history
Configured xunit DisableTestParallelization to make tests more stable
  • Loading branch information
304NotModified authored Feb 23, 2018
2 parents 51e9f3e + 6eff924 commit 6b8eec2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
14 changes: 14 additions & 0 deletions NLog.Web.AspNetCore.Tests/Properties/AssemblyInfo-test.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

[assembly: Xunit.CollectionBehavior(DisableTestParallelization = true)]
2 changes: 2 additions & 0 deletions NLog.Web.Tests/Properties/AssemblyInfo-test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.3.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: Xunit.CollectionBehavior(DisableTestParallelization = true)]
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version: 4.5.0.{build}
clone_folder: c:\projects\nlogweb
configuration: Release
image: Visual Studio 2017
Expand Down

0 comments on commit 6b8eec2

Please sign in to comment.