diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-24 14:47:09 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:22 +0000 |
commit | 400ae6e8989aba7e9edba6a61d7096d5d5c56e01 (patch) | |
tree | 04a65da3a3b6c2df770da89281975637b592c3b6 /gnu/packages/golang-check.scm | |
parent | d90e5dcf58b15335f9797386a432a993458fd908 (diff) |
gnu: go-github-com-warpfork-go-wish: Fix tests.
* gnu/packages/golang-check.scm (go-github-com-warpfork-go-wish)
[arguments] <test-subdirs>: Run tests on shorter range.
<test-flags>: Skip more tests.
Change-Id: I1f6e19c3c2e4001d583a7e3d0d04095740fe3e4c
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index f5a714c8b2..be4037f517 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -1874,7 +1874,15 @@ testmark} format, which itself is a subset of Markdown format.") (build-system go-build-system) (arguments (list - #:import-path "github.com/warpfork/go-wish")) + #:import-path "github.com/warpfork/go-wish" + #:test-subdirs #~(list "cmp/..." "wishfix" ".") + #:test-flags + #~(list "-skip" (string-join + (list "TestDiff" + "TestOptions" + "TestGoTestOutputTree/non-verbose" + "TestGoTestOutputFun/non-verbose") + "|")))) (home-page "https://github.com/warpfork/go-wish") (synopsis "Test assertions for Golang") (description |