Skip to content

Commit ffef347

Browse files
Disable flaky test on Windows (#3008)
I don't think anyone is going to fix this soon, let's just disable it so we can move on. Fixes #2997. Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
1 parent d4eea66 commit ffef347

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ghcide/test/exe/Main.hs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4439,7 +4439,11 @@ findDefinitionAndHoverTests = let
44394439
, test no yes holeL65 hleInfo2 "hole with variable"
44404440
, test no yes cccL17 docLink "Haddock html links"
44414441
, testM yes yes imported importedSig "Imported symbol"
4442-
, testM yes yes reexported reexportedSig "Imported symbol (reexported)"
4442+
, if | isWindows ->
4443+
-- Flaky on Windows: https://github.com/haskell/haskell-language-server/issues/2997
4444+
testM no yes reexported reexportedSig "Imported symbol (reexported)"
4445+
| otherwise ->
4446+
testM yes yes reexported reexportedSig "Imported symbol (reexported)"
44434447
, if | ghcVersion == GHC90 && isWindows ->
44444448
test no broken thLocL57 thLoc "TH Splice Hover"
44454449
| ghcVersion == GHC92 && (isWindows || isMac) ->

0 commit comments

Comments
 (0)