tasty-stats alternatives and similar packages
Based on the "tasty" category.
Alternatively, view tasty-stats alternatives based on common mentions on social networks and blogs.
-
tasty-hedgehog
Tasty integration for the Hedgehog property testing library -
tasty-expected-failure
Mark test cases as expected-failure -
tasty-rerun
Rerun previous test suite runs to run only failing tests -
tasty-test-reporter
An ingredient for tasty that prints a summary and outputs junit xml that works with jenkins. -
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-th
Automatically generate tasty test groups from functions in a module using TH -
tasty-jenkins-xml
Render tasty output to XML for Jenkins in addition to other (console) output -
tasty-silver
A fancy test runner for tasty and support for golden tests. -
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
Learn any GitHub repo in 59 seconds
Do you think we are missing an alternative of tasty-stats or a related project?
README
tasty-stats: Collect statistics of your Tasty test suite in a CSV file
This package is useful to collect statistics of your Tasty test suite in a CSV file. Since timing information and the git commit is collected, the data can be used to find performance regressions between commits.
Use the Test.Tasty.Stats.consoleStatsReporter
ingredient:
main = defaultMainWithIngredients (Test.Tasty.Stats.consoleStatsReporter : defaultIngredients) testTree
Then you can pass the option --stats stats.csv
to the testsuite.
Currently the following information is collected in this order:
idx, name, time, result, gitdate, gitcommit, date, nthreads, description
With tasty-auto:
-- test/test.hs
{-# OPTIONS_GHC -F -pgmF tasty-auto -optF Test.Tasty.Stats.consoleStatsReporter #-}