Skip to content

Commit 8dfb998

Browse files
committed
disable checkProject in the ghcide test suite
1 parent 178e58f commit 8dfb998

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ghcide/ghcide.cabal

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,6 +442,7 @@ executable ghcide-bench
442442
base,
443443
bytestring,
444444
containers,
445+
data-default,
445446
directory,
446447
extra,
447448
filepath,

ghcide/test/exe/Main.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5816,7 +5816,9 @@ runInDir' dir startExeIn startSessionIn extraOptions s = do
58165816
-- Only sets HOME if it wasn't already set.
58175817
setEnv "HOME" "/homeless-shelter" False
58185818
conf <- getConfigFromEnv
5819-
runSessionWithConfig conf cmd lspTestCaps projDir s
5819+
runSessionWithConfig conf cmd lspTestCaps projDir $ do
5820+
configureCheckProject False
5821+
s
58205822

58215823
getConfigFromEnv :: IO SessionConfig
58225824
getConfigFromEnv = do

0 commit comments

Comments
 (0)