test-framework
test-framework copied to clipboard
Framework for running and organising QuickCheck test properties and HUnit test cases
A mailing list cannot be a maintainer (in particular, not an open list like `[email protected]`): https://github.com/haskell/test-framework/blob/7f3dbc1c71fbac0e2b737942dcad5e0caaaada24/core/test-framework.cabal#L12
When a property test succeeds and QC's classify function has been used, the output now has additional information about the distribution of test cases. Example outputs: [OK, passed 1000 tests...
This package is on life support for at least five years and requires regular bumps from Hackage trustees to be compatible with the latest ecosystem. It's only a matter of...
What's the best way to cancel the test runner on the first failure (like bash's `-e`/`-o errexit`)? Is it even possible? I looked in `RunnerOptions`, but I didn't find it...
Now the path is displayed this way: ``` :: ``` which is probably not desired. More desired format is probably: ``` :: ``` this PR fixes that.
`regex-posix` is just broken (on Windows), that's what I heard from @RyanGlScott
See also https://github.com/batterseapower/test-framework/commit/03bcc4c585569a3c18292519d0d2b1b61cb9e5df
see https://github.com/haskell/test-framework/blob/master/core/Test/Framework/Tests.hs Some time ago I tried resurrecting `test:test-framework-tests` but ran out of time; it compiles but I ran into an XML related failure which needs more investigation; this ticket...
The progress bar is messing up the logs in Travis. Maybe could we disable the progress bar when running in a pseudo terminal, either by environment detection or by explicit...
For long-running tests, it is convenient to learn which test is running even before one knows any results of the test. The console runner does not print anything until the...