tasty-test-reporter 0.1.1.3 → 0.1.1.4
raw patch · 3 files changed
+12/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- src/Test/Tasty/Runners/Reporter.hs +6/−2
- tasty-test-reporter.cabal +2/−2
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.1.4++- Fix error in version 0.1.1.3 that prevented that version from compiling.+ # 0.1.1.3 - Relax version bounds to include `tasty` 1.4.
src/Test/Tasty/Runners/Reporter.hs view
@@ -1,3 +1,4 @@+{-# LANGUAGE CPP #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}@@ -79,7 +80,6 @@ import Data.Text (Text) import Data.Typeable (Typeable) import Numeric (showFFloat)-import Prelude hiding (unlines) import System.Console.ANSI (hSupportsANSIColor) import System.Console.Concurrent (outputConcurrent, withConcurrentOutput) import System.Directory (canonicalizePath, createDirectoryIfMissing)@@ -90,6 +90,7 @@ import qualified Test.Tasty.Options as Tasty import qualified Test.Tasty.Runners as Tasty import qualified Text.XML.JUnit as JUnit+import Prelude hiding (unlines) -- | Ingredient for `Tasty.defaultMainWithIngredients` -- Runs all tests and outputs a summary as well as the failing tests.@@ -116,7 +117,6 @@ deriving (Typeable) instance Tasty.IsOption (Maybe JunitXMLPath) where- defaultValue = Nothing parseValue = Just . Just . JunitXMLPath@@ -188,7 +188,11 @@ Tasty.foldTestTree Tasty.trivialFold { Tasty.foldSingle = runTest statusMap,+#if MIN_VERSION_tasty(1,4,0)+ Tasty.foldGroup = \_ -> runGroup+#else Tasty.foldGroup = runGroup+#endif } options testTree
tasty-test-reporter.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 706f77444460ee6f18b9b5517952c75e7b8dd5ff4111873105b8f86eeb997d7a+-- hash: 43ac5d811ff13414618c919e21133e74dea4d344b9b39b1697479a5d72a18cc8 name: tasty-test-reporter-version: 0.1.1.3+version: 0.1.1.4 synopsis: Producing JUnit-style XML test reports. description: Please see the README at <https://github.com/stoeffel/tasty-test-reporter>. category: Testing