Popularity
6.8
Stable
Activity
2.1
Stable
11
5
7
Monthly Downloads: 23
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Latest version: v0.1.0.0
tasty-test-reporter alternatives and similar packages
Based on the "tasty" category.
Alternatively, view tasty-test-reporter alternatives based on common mentions on social networks and blogs.
-
tasty-ant-xml
A tasty ingredient to output test results in XML, using the Ant schema. This XML can be consumed by the Jenkins continuous integration framework.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
Do you think we are missing an alternative of tasty-test-reporter or a related project?
README
tasty-test-reporter
An ingredient for tasty that prints a summary and outputs junit xml that works with jenkins.
Setting up this ingredient for tasty.
import Test.Tasty
import Test.Tasty.HUnit
import qualified Test.Tasty.Runners.Reporter as Reporter
main = defaultMainWithIngredients [Reporter.ingredient] tests
tests :: TestTree
Running tests with cabal
$ cabal test --test-show-details=always --test-options "--xml=report.xml"