@hackage tasty-stats0.1.0.1

Collecting statistics of the Tasty testsuite

tasty-stats: Collect statistics of your Tasty test suite

Hackage Build Status

This package provides auto discovery for the tasty test framework.

Use the Test.Tasty.Stats.consoleStatsReporter ingredient:

main = defaultMainWithIngredients (Test.Tasty.Stats.consoleStatsReporter : defaultIngredients) testTree

With tasty-auto:

-- test/test.hs
{-# OPTIONS_GHC -F -pgmF tasty-auto -optF Test.Tasty.Stats.consoleStatsReporter #-}