travis: enable -Wall -Werror
This commit is contained in:
parent
555038cbf4
commit
b26bbfccda
21 changed files with 30 additions and 31 deletions
|
@ -46,15 +46,11 @@ library
|
||||||
, markdown-unlit >= 0.4
|
, markdown-unlit >= 0.4
|
||||||
, http-client
|
, http-client
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -Wall -Werror -pgmL markdown-unlit
|
ghc-options: -Wall -pgmL markdown-unlit
|
||||||
-- to silence aeson-0.10 warnings:
|
|
||||||
ghc-options: -fno-warn-missing-methods
|
|
||||||
ghc-options: -fno-warn-name-shadowing
|
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
main-is: Spec.hs
|
main-is: Spec.hs
|
||||||
|
|
|
@ -31,3 +31,4 @@ library
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
|
@ -28,3 +28,4 @@ library
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
|
@ -60,8 +60,7 @@ library
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
main-is: Spec.hs
|
main-is: Spec.hs
|
||||||
|
|
|
@ -28,7 +28,7 @@ import Control.Applicative ((<$>))
|
||||||
import Control.Arrow (left)
|
import Control.Arrow (left)
|
||||||
import Control.Concurrent (forkIO, killThread, ThreadId)
|
import Control.Concurrent (forkIO, killThread, ThreadId)
|
||||||
import Control.Exception (bracket)
|
import Control.Exception (bracket)
|
||||||
import Control.Monad.Trans.Except (ExceptT, throwE, runExceptT)
|
import Control.Monad.Trans.Except (throwE, runExceptT)
|
||||||
import Data.Aeson
|
import Data.Aeson
|
||||||
import qualified Data.ByteString.Lazy as BS
|
import qualified Data.ByteString.Lazy as BS
|
||||||
import Data.Char (chr, isPrint)
|
import Data.Char (chr, isPrint)
|
||||||
|
|
|
@ -82,4 +82,3 @@ test-suite spec
|
||||||
, servant-docs
|
, servant-docs
|
||||||
, string-conversions
|
, string-conversions
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,8 @@
|
||||||
-- arbitrary programming languages.
|
-- arbitrary programming languages.
|
||||||
module Servant.Foreign.Internal where
|
module Servant.Foreign.Internal where
|
||||||
|
|
||||||
import Control.Lens hiding (cons, List)
|
import Control.Lens (makePrisms, makeLenses, Getter, (&), (<>~), (%~),
|
||||||
|
(.~))
|
||||||
#if !MIN_VERSION_base(4,8,0)
|
#if !MIN_VERSION_base(4,8,0)
|
||||||
import Data.Monoid
|
import Data.Monoid
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -55,7 +55,7 @@ library
|
||||||
|
|
||||||
executable counter
|
executable counter
|
||||||
main-is: counter.hs
|
main-is: counter.hs
|
||||||
ghc-options: -O2 -Wall
|
ghc-options: -Wall
|
||||||
hs-source-dirs: examples
|
hs-source-dirs: examples
|
||||||
|
|
||||||
if flag(example)
|
if flag(example)
|
||||||
|
|
|
@ -46,7 +46,7 @@ module Servant.JS.Internal
|
||||||
, Header
|
, Header
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Control.Lens hiding (List)
|
import Control.Lens ((^.))
|
||||||
import qualified Data.CharSet as Set
|
import qualified Data.CharSet as Set
|
||||||
import qualified Data.CharSet.Unicode.Category as Set
|
import qualified Data.CharSet.Unicode.Category as Set
|
||||||
import Data.Monoid
|
import Data.Monoid
|
||||||
|
|
|
@ -31,3 +31,4 @@ library
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
{-# LANGUAGE DeriveGeneric #-}
|
{-# LANGUAGE DeriveGeneric #-}
|
||||||
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
|
||||||
{-# LANGUAGE TypeOperators #-}
|
{-# LANGUAGE TypeOperators #-}
|
||||||
|
|
||||||
|
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
|
||||||
|
|
||||||
import Data.Aeson
|
import Data.Aeson
|
||||||
import GHC.Generics
|
import GHC.Generics
|
||||||
import Network.Wai.Handler.Warp
|
import Network.Wai.Handler.Warp
|
||||||
|
|
|
@ -35,6 +35,7 @@ library
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
||||||
executable mock-app
|
executable mock-app
|
||||||
main-is: main.hs
|
main-is: main.hs
|
||||||
|
@ -45,11 +46,11 @@ executable mock-app
|
||||||
buildable: True
|
buildable: True
|
||||||
else
|
else
|
||||||
buildable: False
|
buildable: False
|
||||||
|
ghc-options: -Wall
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall -fno-warn-name-shadowing
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
main-is: Spec.hs
|
main-is: Spec.hs
|
||||||
|
|
|
@ -94,8 +94,7 @@ executable greet
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
main-is: Spec.hs
|
main-is: Spec.hs
|
||||||
|
@ -147,5 +146,5 @@ test-suite doctests
|
||||||
main-is: test/Doctests.hs
|
main-is: test/Doctests.hs
|
||||||
buildable: True
|
buildable: True
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -threaded
|
ghc-options: -Wall -threaded
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{-# LANGUAGE DataKinds #-}
|
{-# LANGUAGE DataKinds #-}
|
||||||
{-# OPTIONS_GHC -fdefer-type-errors #-}
|
{-# OPTIONS_GHC -fdefer-type-errors -Wwarn #-}
|
||||||
module Servant.Server.Internal.ContextSpec (spec) where
|
module Servant.Server.Internal.ContextSpec (spec) where
|
||||||
|
|
||||||
import Data.Proxy (Proxy (..))
|
import Data.Proxy (Proxy (..))
|
||||||
import Test.Hspec (Spec, describe, it, shouldBe, pending, context)
|
import Test.Hspec (Spec, describe, it, shouldBe, context)
|
||||||
import Test.ShouldNotTypecheck (shouldNotTypecheck)
|
import Test.ShouldNotTypecheck (shouldNotTypecheck)
|
||||||
|
|
||||||
import Servant.API
|
import Servant.API
|
||||||
|
@ -26,16 +26,17 @@ spec = do
|
||||||
shouldNotTypecheck x
|
shouldNotTypecheck x
|
||||||
|
|
||||||
context "Show instance" $ do
|
context "Show instance" $ do
|
||||||
let cxt = 'a' :. True :. EmptyContext
|
|
||||||
it "has a Show instance" $ do
|
it "has a Show instance" $ do
|
||||||
|
let cxt = 'a' :. True :. EmptyContext
|
||||||
show cxt `shouldBe` "'a' :. True :. EmptyContext"
|
show cxt `shouldBe` "'a' :. True :. EmptyContext"
|
||||||
|
|
||||||
context "bracketing" $ do
|
context "bracketing" $ do
|
||||||
it "works" $ do
|
it "works" $ do
|
||||||
|
let cxt = 'a' :. True :. EmptyContext
|
||||||
show (Just cxt) `shouldBe` "Just ('a' :. True :. EmptyContext)"
|
show (Just cxt) `shouldBe` "Just ('a' :. True :. EmptyContext)"
|
||||||
|
|
||||||
it "works with operators" $ do
|
it "works with operators" $ do
|
||||||
let cxt = (1 :. 'a' :. EmptyContext) :<|> ('b' :. True :. EmptyContext)
|
let cxt = ((1 :: Integer) :. 'a' :. EmptyContext) :<|> ('b' :. True :. EmptyContext)
|
||||||
show cxt `shouldBe` "(1 :. 'a' :. EmptyContext) :<|> ('b' :. True :. EmptyContext)"
|
show cxt `shouldBe` "(1 :. 'a' :. EmptyContext) :<|> ('b' :. True :. EmptyContext)"
|
||||||
|
|
||||||
describe "descendIntoNamedContext" $ do
|
describe "descendIntoNamedContext" $ do
|
||||||
|
|
|
@ -5,7 +5,6 @@ module Servant.Server.Internal.EnterSpec where
|
||||||
|
|
||||||
import qualified Control.Category as C
|
import qualified Control.Category as C
|
||||||
import Control.Monad.Reader
|
import Control.Monad.Reader
|
||||||
import Control.Monad.Trans.Except
|
|
||||||
import Data.Proxy
|
import Data.Proxy
|
||||||
import Servant.API
|
import Servant.API
|
||||||
import Servant.Server
|
import Servant.Server
|
||||||
|
|
|
@ -16,6 +16,7 @@ import Servant.API
|
||||||
import Servant.Server
|
import Servant.Server
|
||||||
import Servant.Server.Internal
|
import Servant.Server.Internal
|
||||||
|
|
||||||
|
spec :: Spec
|
||||||
spec = describe "Servant.Server.Internal.Router" $ do
|
spec = describe "Servant.Server.Internal.Router" $ do
|
||||||
routerSpec
|
routerSpec
|
||||||
distributivitySpec
|
distributivitySpec
|
||||||
|
|
|
@ -11,7 +11,6 @@ module Servant.Server.StreamingSpec where
|
||||||
import Control.Concurrent
|
import Control.Concurrent
|
||||||
import Control.Exception hiding (Handler)
|
import Control.Exception hiding (Handler)
|
||||||
import Control.Monad.IO.Class
|
import Control.Monad.IO.Class
|
||||||
import Control.Monad.Trans.Except
|
|
||||||
import qualified Data.ByteString as Strict
|
import qualified Data.ByteString as Strict
|
||||||
import qualified Data.ByteString.Lazy as Lazy
|
import qualified Data.ByteString.Lazy as Lazy
|
||||||
import Network.HTTP.Types
|
import Network.HTTP.Types
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
module Servant.Server.UsingContextSpec where
|
module Servant.Server.UsingContextSpec where
|
||||||
|
|
||||||
import Control.Monad.Trans.Except
|
|
||||||
import Network.Wai
|
import Network.Wai
|
||||||
import Test.Hspec (Spec, describe, it)
|
import Test.Hspec (Spec, describe, it)
|
||||||
import Test.Hspec.Wai
|
import Test.Hspec.Wai
|
||||||
|
|
|
@ -30,12 +30,12 @@ instance (HasContextEntry context String, HasServer subApi context) =>
|
||||||
String -> ServerT subApi m
|
String -> ServerT subApi m
|
||||||
|
|
||||||
route Proxy context delayed =
|
route Proxy context delayed =
|
||||||
route subProxy context (fmap (inject context) delayed)
|
route subProxy context (fmap inject delayed)
|
||||||
where
|
where
|
||||||
subProxy :: Proxy subApi
|
subProxy :: Proxy subApi
|
||||||
subProxy = Proxy
|
subProxy = Proxy
|
||||||
|
|
||||||
inject context f = f (getContextEntry context)
|
inject f = f (getContextEntry context)
|
||||||
|
|
||||||
data InjectIntoContext
|
data InjectIntoContext
|
||||||
|
|
||||||
|
|
|
@ -89,8 +89,7 @@ library
|
||||||
|
|
||||||
test-suite spec
|
test-suite spec
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
ghc-options:
|
ghc-options: -Wall
|
||||||
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
|
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
main-is: Spec.hs
|
main-is: Spec.hs
|
||||||
|
@ -122,5 +121,5 @@ test-suite doctests
|
||||||
main-is: test/Doctests.hs
|
main-is: test/Doctests.hs
|
||||||
buildable: True
|
buildable: True
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -threaded
|
ghc-options: -Wall -threaded
|
||||||
include-dirs: include
|
include-dirs: include
|
||||||
|
|
|
@ -6,7 +6,7 @@ for package in $(cat sources.txt) doc/tutorial ; do
|
||||||
echo testing $package
|
echo testing $package
|
||||||
pushd $package
|
pushd $package
|
||||||
tinc
|
tinc
|
||||||
cabal configure --enable-tests --disable-optimization
|
cabal configure --enable-tests --disable-optimization --ghc-options='-Werror'
|
||||||
cabal build
|
cabal build
|
||||||
cabal test
|
cabal test
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Reference in a new issue