Popularity
6.4
Growing
Activity
3.7
Declining
11
4
4
Monthly Downloads: 35
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
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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"