diff options
author | RomanCheplyaka <> | 2021-01-13 08:09:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2021-01-13 08:09:00 (GMT) |
commit | 9ebe898377e753edc14bbb28dfab3887fdffa113 (patch) | |
tree | 67b8034d5c397bdbf17038c615c334475f20d403 | |
parent | befd7b62b849b9469df11a4f1ebf6a78020b1a2b (diff) |
version 0.4.1.30.4.1.3
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | Test/Tasty/Runners/Html.hs | 4 | ||||
-rw-r--r-- | tasty-html.cabal | 6 |
3 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 815dcec..27f24a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +0.4.1.3 - 2021-01-13 +-------------------- + +Update to tasty-1.4 + 0.4.1.2 - 2018-06-27 -------------------- diff --git a/Test/Tasty/Runners/Html.hs b/Test/Tasty/Runners/Html.hs index 0b236fb..a63bf9b 100644 --- a/Test/Tasty/Runners/Html.hs +++ b/Test/Tasty/Runners/Html.hs @@ -153,8 +153,8 @@ runTest statusMap _ testName _ = Traversal $ Compose $ do Const summary <$ State.modify (+1) -- | To be used for a 'TestGroup' when folding the final 'TestTree'. -runGroup :: TestName -> SummaryTraversal -> SummaryTraversal -runGroup groupName children = Traversal $ Compose $ do +runGroup :: OptionSet -> TestName -> SummaryTraversal -> SummaryTraversal +runGroup _opts groupName children = Traversal $ Compose $ do Const soFar <- getCompose $ getTraversal children let (extra,text) = if summaryFailures soFar > Sum 0 diff --git a/tasty-html.cabal b/tasty-html.cabal index 183d795..6c3bd0c 100644 --- a/tasty-html.cabal +++ b/tasty-html.cabal @@ -1,5 +1,5 @@ name: tasty-html -version: 0.4.1.2 +version: 0.4.1.3 synopsis: Render tasty output to HTML description: A tasty ingredient to output test results in HTML5. license: MIT @@ -35,9 +35,9 @@ library stm >= 2.4.2, semigroups, tagged >= 0.7, - tasty >= 0.10.1, + tasty >= 1.4, text >= 1.0, transformers >= 0.3.0.0, blaze-html >= 0.7 default-language: Haskell98 - ghc-options: -Wall -O2 + ghc-options: -Wall |