Skip to content
Merged
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
37 changes: 37 additions & 0 deletions hell.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,43 @@ executable hell
, bytestring
, constraints
, containers
, criterion
, criterion-measurement
, directory
, ghc-prim
, haskell-src-exts
, hspec
, lucid2
, mtl
, optparse-applicative
, syb
, template-haskell
, temporary
, text
, th-lift
, th-orphans
, these
, time
, typed-process
, unliftio
, vector
default-language: Haskell2010

test-suite hell-test
type: exitcode-stdio-1.0
main-is: src/Hell.hs
other-modules:
Paths_hell
ghc-options: -Wall -Wno-missing-pattern-synonym-signatures -O2 -main-is Main.specMain -threaded -rtsopts
build-depends:
QuickCheck
, aeson
, async
, base
, bytestring
, constraints
, containers
, criterion
, criterion-measurement
, directory
, ghc-prim
Expand Down
10 changes: 10 additions & 0 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies:
- bytestring
- async
- criterion-measurement
- criterion
- mtl
- directory
- syb
Expand Down Expand Up @@ -43,3 +44,12 @@ executables:
ghc-options:
- -threaded
- -rtsopts

tests:
hell-test:
main: src/Hell.hs
ghc-options:
- -main-is
- Main.specMain
- -threaded
- -rtsopts
Loading