We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 510bd51 commit 8986d66Copy full SHA for 8986d66
ghcide/test/exe/Main.hs
@@ -4439,7 +4439,11 @@ findDefinitionAndHoverTests = let
4439
, test no yes holeL65 hleInfo2 "hole with variable"
4440
, test no yes cccL17 docLink "Haddock html links"
4441
, testM yes yes imported importedSig "Imported symbol"
4442
- , testM yes yes reexported reexportedSig "Imported symbol (reexported)"
+ , if | isWindows ->
4443
+ -- Flaky on Windows: https://github.com/haskell/haskell-language-server/issues/2997
4444
+ testM broken yes reexported reexportedSig "Imported symbol (reexported)"
4445
+ | otherwise ->
4446
+ testM yes yes reexported reexportedSig "Imported symbol (reexported)"
4447
, if | ghcVersion == GHC90 && isWindows ->
4448
test no broken thLocL57 thLoc "TH Splice Hover"
4449
| ghcVersion == GHC92 && (isWindows || isMac) ->
0 commit comments