Popularity
6.9
Growing
Activity
2.1
-
11
5
7

Monthly Downloads: 42
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Testing     Tasty    
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.

Do you think we are missing an alternative of tasty-test-reporter or a related project?

Add another 'tasty' Package

README

tasty-test-reporter

An ingredient for tasty that prints a summary and outputs junit xml that works with jenkins.

output from reporter

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"