File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ namespace TaskSeq.Tests
22
33open System.Runtime .CompilerServices
44
5+ // this prevents an XUnit bug to break over itself on CI
6+ // tests themselves can be run in parallel just fine.
57[<assembly: Xunit.CollectionBehavior( DisableTestParallelization = true ) >]
6- [<assembly: Xunit.TestCaseOrderer( " FSharpy.Tests.AlphabeticalOrderer" , " FSharpy.TaskSeq.Test" ) >]
78
89do ()
Original file line number Diff line number Diff line change @@ -10,15 +10,6 @@ open FsToolkit.ErrorHandling
1010open Xunit
1111open Xunit.Sdk
1212
13- type AlphabeticalOrderer () =
14- interface ITestCaseOrderer with
15- override this.OrderTestCases ( testCases ) =
16- testCases
17- |> Seq.sortBy ( fun testCase ->
18- // sorting (or getting) the type fails
19- // and as soon as this method fails, no tests are discovered
20- testCase.TestMethod.Method.Name)
21-
2213
2314[<AutoOpen>]
2415module ExtraCustomMatchers =
You can’t perform that action at this time.
0 commit comments