Popularity
6.2
Growing
Activity
3.7
-
10
4
3
Monthly Downloads: 30
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-hedgehog
Tasty integration for the Hedgehog property testing library -
tasty-discover
Test discovery for the tasty framework. -
tasty-rerun
Rerun previous test suite runs to run only failing tests -
tasty-expected-failure
Mark test cases as expected-failure -
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. -
tasty-jenkins-xml
Render tasty output to XML for Jenkins in addition to other (console) output -
tasty-html
HTML test reporter for the Tasty test framework -
tasty-th
Automatically generate tasty test groups from functions in a module using TH -
tasty-silver
A fancy test runner for tasty and support for golden tests. -
tasty-mgolden
A different golden testing provider for tasty. -
tasty-auto
Deprecated: Auto discovery for the Tasty test framework, use tasty-discover instead -
tasty-leancheck
LeanCheck support for the Tasty test framework (Haskell) -
tasty-program
Use tasty framework to test whether a program executes correctly
Less time debugging, more time building
Scout APM allows you to find and fix performance issues with no hassle. Now with error monitoring and external services monitoring, Scout is a developer's best friend when it comes to application development.
Promo
scoutapm.com
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"