File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ module Main (main) where
33
33
import qualified HieDbRetry
34
34
import Test.Tasty
35
35
import Test.Tasty.Ingredients.Rerun
36
+ import Test.Tasty.Runners
36
37
37
38
import AsyncTests
38
39
import BootTests
@@ -68,7 +69,7 @@ import WatchedFileTests
68
69
main :: IO ()
69
70
main = do
70
71
-- We mess with env vars so run single-threaded.
71
- defaultMainWithRerun $ testGroup " ghcide"
72
+ defaultMainWithRerun $ PlusTestOptions mkSequential $ testGroup " ghcide"
72
73
[ OpenCloseTest. tests
73
74
, InitializeResponseTests. tests
74
75
, CompletionTests. tests
@@ -100,3 +101,6 @@ main = do
100
101
, HieDbRetry. tests
101
102
, ExceptionTests. tests
102
103
]
104
+ where
105
+ PlusTestOptions mkSequential _ = sequentialTestGroup " foo" AllFinish []
106
+
You can’t perform that action at this time.
0 commit comments