[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50835] [PATCH v2 22/24] gnu: Add ghc-tasty-fail-fast.
From: |
Stephen Paul Weber |
Subject: |
[bug#50835] [PATCH v2 22/24] gnu: Add ghc-tasty-fail-fast. |
Date: |
Thu, 13 Jan 2022 21:45:44 -0500 |
* gnu/packages/haskell-xyz.scm (ghc-tasty-fail-fast): New variable.
---
gnu/packages/haskell-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 7e654c6edf..a137b8b5da 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -16577,3 +16577,26 @@
https://gist.github.com/maaku/8996338#file-bip-ecc32-mediawiki.")
(description
"Tasty TAP is a tasty ingredient to output test results in TAP 13
format.")
(license license:expat)))
+
+(define-public ghc-tasty-fail-fast
+ (package
+ (name "ghc-tasty-fail-fast")
+ (version "0.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/MichaelXavier/tasty-fail-fast")
+ (commit "68d7f182f4d1f7b97a724c26f554e5da27fe9413")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05x4ly5sfj5fmjsxxrfys20qc6n078vwaxxzlk2l354l7kng5512"))))
+ (build-system haskell-build-system)
+ (inputs (list ghc-tasty ghc-tagged))
+ (native-inputs (list ghc-tasty-hunit ghc-tasty-golden ghc-tasty-tap))
+ (home-page "https://github.com/MichaelXavier/tasty-fail-fast")
+ (synopsis
+ "Adds the ability to fail a tasty test suite on first test failure")
+ (description
+ "Tasty-fail-fast wraps any ingredient to fail as soon as the first test
fails.")
+ (license license:bsd-3)))
--
2.30.2
- [bug#50835] [PATCH v2 13/24] gnu: Add ghc-random-shuffle., (continued)
- [bug#50835] [PATCH v2 13/24] gnu: Add ghc-random-shuffle., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 15/24] gnu: Add ghc-hostandport., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 16/24] gnu: Add ghc-binary-varint., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 17/24] gnu: Add ghc-multihash-cryptonite., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 19/24] gnu: Add ghc-base32-z-bytestring., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 18/24] gnu: Add ghc-cpu., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 23/24] gnu: Add ghc-multibase., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 24/24] gnu: Add ghc-ipld-cid., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 21/24] gnu: Add ghc-tasty-tap., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 20/24] gnu: Add ghc-formatting., Stephen Paul Weber, 2022/01/13
- [bug#50835] [PATCH v2 22/24] gnu: Add ghc-tasty-fail-fast.,
Stephen Paul Weber <=