tasty-ant-xml 1.0.0.4 → 1.0.0.5
raw patch · 3 files changed
+10/−3 lines, 3 filesdep ~tasty
Dependency ranges changed: tasty
Files
- Changelog.md +4/−0
- Test/Tasty/Runners/AntXML.hs +4/−1
- tasty-ant-xml.cabal +2/−2
Changelog.md view
@@ -1,3 +1,7 @@+# 1.0.0.5++* Updated to build with `tasty` 0.7+ # 1.0.0.4 * Updated to build with `tasty` 0.5.
Test/Tasty/Runners/AntXML.hs view
@@ -124,7 +124,10 @@ in do (Const summary, tests) <- flip State.runStateT 0 $ Functor.getCompose $ getTraversal $- Tasty.foldTestTree runTest runGroup (const id) options testTree+ Tasty.foldTestTree+ Tasty.trivialFold { Tasty.foldSingle = runTest, Tasty.foldGroup = runGroup }+ options+ testTree writeFile path $ XML.showTopElement $
tasty-ant-xml.cabal view
@@ -1,5 +1,5 @@ name: tasty-ant-xml-version: 1.0.0.4+version: 1.0.0.5 synopsis: Render tasty output to XML for Jenkins description: A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework. homepage: http://github.com/ocharles/tasty-ant-xml@@ -23,7 +23,7 @@ reducers >= 3.10.1, stm >= 2.4.2, tagged >= 0.7,- tasty >= 0.5,+ tasty >= 0.7, transformers >= 0.3.0.0, xml >= 1.3.13 default-language: Haskell98