Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions grpc-mqtt.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ common common
ghc-options:
-Wall
-Wcompat
-Werror
-- -Werror
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
Expand All @@ -36,6 +36,7 @@ common common
-Wunused-packages
-Wno-unused-top-binds
-fshow-warning-groups
-eventlog

default-extensions:
BangPatterns BlockArguments DataKinds DefaultSignatures DeriveDataTypeable
Expand Down Expand Up @@ -149,7 +150,7 @@ test-suite test
-O2
-threaded
-rtsopts
"-with-rtsopts=-N4"
"-with-rtsopts=-N4 -hT -ls -l -i0.005"
-fregs-iterative

other-modules:
Expand All @@ -172,6 +173,8 @@ test-suite test
Test.Service
Test.Suite.Config
Test.Suite.Fixture
Test.Suite.GRPC
Test.Suite.MQTT
Test.Suite.Wire
Test.Proto.Clients
Test.Proto.RemoteClients
Expand All @@ -196,5 +199,7 @@ test-suite test
, tasty-hedgehog < 1.1.0.0
, tasty-hunit
, tls
, unliftio >= 0.2.15 && < 0.3
, unliftio-core >= 0.2.0 && < 0.3
, uuid
, containers
2 changes: 1 addition & 1 deletion test/Test/Network/GRPC/MQTT/Message/Request.hs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ where
--------------------------------------------------------------------------------

import Hedgehog (Property, forAll, property, tripping, (===))
import Hedgehog qualified as Hedgehog
import Hedgehog qualified

import Test.Tasty (TestTree, testGroup)
import Test.Tasty.Hedgehog (testProperty)
Expand Down
Loading