tasty-stats: Collecting statistics of the Tasty testsuite

[ library, mit, testing ] [ Propose Tags ]
This version is deprecated.

Collecting statistics of the Tasty testsuite


[Skip to Readme]

Modules

[Last Documentation]

  • Test
    • Tasty
      • Test.Tasty.Stats

Downloads

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.12), 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>
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:10:00Z
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 not available [build log]
All reported builds failed as of 2017-02-12 [all 3 reports]

Readme for tasty-stats-0.1.0.0

[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.consoleReporter ingredient:

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

With tasty-auto:

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