forked from stoeffel/tasty-test-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c842f45
commit b704130
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
cabal-version: 1.18 | ||
|
||
-- This file has been generated from package.yaml by hpack version 0.35.2. | ||
-- | ||
-- see: https://github.com/sol/hpack | ||
|
||
name: tasty-test-reporter | ||
version: 0.1.1.4 | ||
synopsis: Producing JUnit-style XML test reports. | ||
description: Please see the README at <https://github.com/stoeffel/tasty-test-reporter>. | ||
category: Testing | ||
homepage: https://github.com/stoeffel/tasty-test-reporter#readme | ||
bug-reports: https://github.com/stoeffel/tasty-test-reporter/issues | ||
author: Christoph Hermann | ||
maintainer: schtoeffel@gmail.com | ||
copyright: 2020 Christoph Hermann | ||
license: BSD3 | ||
license-file: LICENSE | ||
build-type: Simple | ||
extra-doc-files: | ||
README.md | ||
CHANGELOG.md | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/stoeffel/tasty-test-reporter | ||
|
||
library | ||
exposed-modules: | ||
Test.Tasty.Runners.Reporter | ||
other-modules: | ||
Test.Console.Color | ||
Paths_tasty_test_reporter | ||
hs-source-dirs: | ||
src | ||
build-depends: | ||
ansi-terminal >=0.8 && <1.1 | ||
, base >=4.10.1.0 && <5 | ||
, concurrent-output ==1.10.* | ||
, containers >=0.5 && <0.7 | ||
, directory ==1.3.* | ||
, filepath ==1.4.* | ||
, junit-xml ==0.1.* | ||
, mtl >=2.2 && <2.4 | ||
, safe-exceptions ==0.1.* | ||
, stm >=2.4 && <2.6 | ||
, tagged ==0.8.* | ||
, tasty >=0.1 && <1.6 | ||
, text >=1.2 && <2.2 | ||
default-language: Haskell2010 | ||
|
||
test-suite spec | ||
type: exitcode-stdio-1.0 | ||
main-is: Main.hs | ||
other-modules: | ||
Paths_tasty_test_reporter | ||
hs-source-dirs: | ||
test | ||
build-depends: | ||
base | ||
, tasty | ||
, tasty-hunit | ||
, tasty-test-reporter | ||
default-language: Haskell2010 |