Popularity
4.4
Declining
Activity
0.0
Stable
7
4
0

Monthly Downloads: 21
Programming language: Haskell
License: MIT License
Tags: Testing     Tasty    

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.

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

Add another 'tasty' Package

README

tasty-stats: Collect statistics of your Tasty test suite in a CSV file

Hackage Build Status

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 #-}