Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: try fix parallelism in test #173

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ nuget Newtonsoft.Json 13.0.1
nuget xunit 2.4.2
nuget xunit.runner.visualstudio 2.4.5
nuget xunit.categories 2.0.6
nuget Xunit.Extensions.Ordering 1.4.5
nuget FluentAssertions 6.5.1
nuget SwashBuckle.AspNetCore.Swagger 6.4.0
nuget SwashBuckle.AspNetCore.SwaggerGen 6.3.1
Expand Down
19 changes: 16 additions & 3 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -555,8 +555,18 @@ NUGET
Microsoft.NET.Test.Sdk (17.1)
Microsoft.CodeCoverage (>= 17.1)
Microsoft.TestPlatform.TestHost (>= 17.1) - restriction: || (&& (== net472) (>= netcoreapp1.0)) (== net6.0)
Microsoft.NETCore.Platforms (6.0.4) - restriction: || (&& (== net472) (< net45)) (&& (== net472) (< net452)) (&& (== net472) (>= net5.0)) (&& (== net472) (>= netcoreapp2.0)) (&& (== net472) (< netstandard1.0)) (&& (== net472) (< netstandard1.3) (>= wpa81)) (&& (== net472) (< netstandard1.5) (>= uap10.0)) (&& (== net472) (< portable-net45+win8+wpa81)) (&& (== net472) (>= uap10.1)) (&& (== net472) (>= wp8)) (== net6.0)
Microsoft.NETCore.Targets (5.0) - restriction: || (&& (== net472) (>= net5.0)) (== net6.0)
Microsoft.NETCore.App (2.2.8) - restriction: || (&& (== net472) (>= netcoreapp1.0)) (== net6.0)
Microsoft.NETCore.DotNetHostPolicy (>= 2.2.8) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.Platforms (>= 2.2.4) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.Targets (>= 2.0) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
NETStandard.Library (>= 2.0.3) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.DotNetAppHost (8.0.2) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.DotNetHostPolicy (8.0.2) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.DotNetHostResolver (>= 8.0.2)
Microsoft.NETCore.DotNetHostResolver (8.0.2) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.DotNetAppHost (>= 8.0.2)
Microsoft.NETCore.Platforms (6.0.4) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.Targets (5.0) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.OpenApi (1.3.2)
Microsoft.TestPlatform.ObjectModel (17.2) - restriction: || (&& (== net472) (>= netcoreapp1.0)) (== net6.0)
NuGet.Frameworks (>= 5.11)
Expand All @@ -577,7 +587,7 @@ NUGET
Microsoft.Build.Framework (>= 16.10)
Microsoft.Build.Tasks.Core (>= 16.10)
Microsoft.Build.Utilities.Core (>= 16.10)
NETStandard.Library (2.0.3) - restriction: || (&& (== net472) (< net452)) (== net6.0)
NETStandard.Library (2.0.3) - restriction: || (&& (== net472) (>= netcoreapp2.2)) (== net6.0)
Microsoft.NETCore.Platforms (>= 1.1)
Newtonsoft.Json (13.0.1)
Npgsql (6.0.5)
Expand Down Expand Up @@ -880,4 +890,7 @@ NUGET
xunit.extensibility.execution (2.4.2)
NETStandard.Library (>= 1.6.1) - restriction: || (&& (== net472) (< net452)) (== net6.0)
xunit.extensibility.core (2.4.2)
Xunit.Extensions.Ordering (1.4.5)
Microsoft.NETCore.App (>= 1.0.5) - restriction: || (&& (== net472) (>= netcoreapp1.0)) (== net6.0)
xunit.core (>= 2.4.1)
xunit.runner.visualstudio (2.4.5)
4 changes: 4 additions & 0 deletions test/TicketingService.Monitoring.Tests/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
using Xunit;

[assembly: TestCaseOrderer("Xunit.Extensions.Ordering.TestCaseOrderer", "Xunit.Extensions.Ordering")]

1 change: 1 addition & 0 deletions test/TicketingService.Monitoring.Tests/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ Moq
xunit
xunit.runner.visualstudio
xunit.categories
Xunit.Extensions.Ordering
FluentAssertions
Loading