File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ namespace TaskSeq.Tests
2
2
3
3
open System.Runtime .CompilerServices
4
4
5
+ // this prevents an XUnit bug to break over itself on CI
6
+ // tests themselves can be run in parallel just fine.
5
7
[<assembly: Xunit.CollectionBehavior( DisableTestParallelization = true ) >]
6
- [<assembly: Xunit.TestCaseOrderer( " FSharpy.Tests.AlphabeticalOrderer" , " FSharpy.TaskSeq.Test" ) >]
7
8
8
9
do ()
Original file line number Diff line number Diff line change @@ -10,15 +10,6 @@ open FsToolkit.ErrorHandling
10
10
open Xunit
11
11
open Xunit.Sdk
12
12
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
-
22
13
23
14
[<AutoOpen>]
24
15
module ExtraCustomMatchers =
You can’t perform that action at this time.
0 commit comments