Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore flakey tactics test #546

Merged
merged 2 commits into from
Oct 27, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions test/functional/Tactic.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module Tactic
where

import Control.Applicative.Combinators ( skipManyTill )
import Control.Monad (unless)
import Control.Monad.IO.Class
import Data.Foldable
import Data.Maybe
Expand All @@ -18,12 +19,12 @@ import qualified Data.Text.IO as T
import Ide.Plugin.Tactic.TestTypes
import Language.Haskell.LSP.Test
import Language.Haskell.LSP.Types (ApplyWorkspaceEditRequest, Position(..) , Range(..) , CAResult(..) , CodeAction(..))
import System.Directory (doesFileExist)
import System.FilePath
import Test.Hls.Util
import Test.Tasty
import Test.Tasty.ExpectedFailure (ignoreTestBecause)
import Test.Tasty.HUnit
import System.FilePath
import System.Directory (doesFileExist)
import Control.Monad (unless)


------------------------------------------------------------------------------
Expand Down Expand Up @@ -106,7 +107,8 @@ tests = testGroup
, goldenTest "GoldenShowCompose.hs" 2 15 Auto ""
, goldenTest "GoldenShowMapChar.hs" 2 8 Auto ""
, goldenTest "GoldenSuperclass.hs" 7 8 Auto ""
, goldenTest "GoldenApplicativeThen.hs" 2 11 Auto ""
, ignoreTestBecause "It is unreliable in circleci builds"
$ goldenTest "GoldenApplicativeThen.hs" 2 11 Auto ""
]


Expand Down