Skip to content

Commit ec8a94c

Browse files
committed
Use only two threads for hls
1 parent 4d3d8c6 commit ec8a94c

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/utils/Test/Hls/Command.hs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module Test.Hls.Command
22
( hlsCommand,
33
hlsCommandExamplePlugin,
4-
hlsCommandVomit,
54
logFilePath,
65
)
76
where
@@ -23,10 +22,7 @@ hlsCommand :: String
2322
{-# NOINLINE hlsCommand #-}
2423
hlsCommand = unsafePerformIO $ do
2524
testExe <- fromMaybe "haskell-language-server" <$> lookupEnv "HLS_TEST_EXE"
26-
pure $ testExe ++ " --lsp -d -j4 -l test-logs/" ++ logFilePath
27-
28-
hlsCommandVomit :: String
29-
hlsCommandVomit = hlsCommand ++ " --vomit"
25+
pure $ testExe ++ " --lsp -d -j2 -l test-logs/" ++ logFilePath
3026

3127
hlsCommandExamplePlugin :: String
3228
hlsCommandExamplePlugin = hlsCommand ++ " --example"

0 commit comments

Comments
 (0)