haskell-language-server-2.6.0.0: test/functional/Main.hs
module Main where
import Config
import ConfigSchema
import Format
import FunctionalBadProject
import HieBios
import Progress
import Test.Hls
main :: IO ()
main = defaultTestRunner $ testGroup "haskell-language-server"
[ Config.tests
, ConfigSchema.tests
, ignoreInEnv [HostOS Windows, GhcVer GHC90, GhcVer GHC92] "Tests gets stuck in ci" $ Format.tests
, FunctionalBadProject.tests
, HieBios.tests
, ignoreInEnv [HostOS Windows, GhcVer GHC90] "Tests gets stuck in ci" $ Progress.tests
]