We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b4d95 commit e6e8786Copy full SHA for e6e8786
ghcide/test/exe/Main.hs
@@ -33,6 +33,7 @@ module Main (main) where
33
import qualified HieDbRetry
34
import Test.Tasty
35
import Test.Tasty.Ingredients.Rerun
36
+import Test.Tasty.Runners
37
38
import AsyncTests
39
import BootTests
@@ -68,7 +69,7 @@ import WatchedFileTests
68
69
main :: IO ()
70
main = do
71
-- We mess with env vars so run single-threaded.
- defaultMainWithRerun $ testGroup "ghcide"
72
+ defaultMainWithRerun $ PlusTestOptions mkSequential $ testGroup "ghcide"
73
[ OpenCloseTest.tests
74
, InitializeResponseTests.tests
75
, CompletionTests.tests
@@ -100,3 +101,6 @@ main = do
100
101
, HieDbRetry.tests
102
, ExceptionTests.tests
103
]
104
+ where
105
+ PlusTestOptions mkSequential _ =sequentialTestGroup "foo" AllFinish []
106
+
0 commit comments