tasty-stats: Collecting statistics of the Tasty testsuite

[ library, mit, testing ] [ Propose Tags ]

Collecting statistics of the Tasty testsuite


[Skip to Readme]

Modules

[Index]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.2.0.0, 0.2.0.1, 0.2.0.2, 0.2.0.3, 0.2.0.4 (info)
Dependencies base (>=4.8 && <5), containers (>=0.4 && <0.6), process (>=1.3 && <1.5), stm (>=2.4 && <2.6), tagged (>=0.7 && <0.9), tasty (>=0.10 && <0.11.2), time (>=1.5 && <1.7) [details]
License MIT
Copyright 2017 Daniel Mendler
Author Daniel Mendler <mail@daniel-mendler.de>
Maintainer Daniel Mendler <mail@daniel-mendler.de>
Revised Revision 1 made by minad at 2017-02-13T10:27:27Z
Category Testing
Home page https://github.com/minad/tasty-stats#readme
Bug tracker https://github.com/minad/tasty-stats/issues
Source repo head: git clone https://github.com/minad/tasty-stats
Uploaded by minad at 2017-02-12T04:14:03Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 4713 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-02-12 [all 1 reports]

Readme for tasty-stats-0.1.0.1

[back to package description]

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