Skip to content

Commit

Permalink
add cabal file
Browse files Browse the repository at this point in the history
  • Loading branch information
goodlyrottenapple committed Feb 19, 2024
1 parent c842f45 commit b704130
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions tasty-test-reporter.cabal
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

0 comments on commit b704130

Please sign in to comment.