Skip to content

Commit

Permalink
Disable flaky test on Windows (#3008)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
michaelpj and mergify[bot] authored Jul 4, 2022
1 parent d4eea66 commit ffef347
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ghcide/test/exe/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4439,7 +4439,11 @@ findDefinitionAndHoverTests = let
, test no yes holeL65 hleInfo2 "hole with variable"
, test no yes cccL17 docLink "Haddock html links"
, testM yes yes imported importedSig "Imported symbol"
, testM yes yes reexported reexportedSig "Imported symbol (reexported)"
, if | isWindows ->
-- Flaky on Windows: https://github.com/haskell/haskell-language-server/issues/2997
testM no yes reexported reexportedSig "Imported symbol (reexported)"
| otherwise ->
testM yes yes reexported reexportedSig "Imported symbol (reexported)"
, if | ghcVersion == GHC90 && isWindows ->
test no broken thLocL57 thLoc "TH Splice Hover"
| ghcVersion == GHC92 && (isWindows || isMac) ->
Expand Down

0 comments on commit ffef347

Please sign in to comment.