diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-02-10 16:57:44 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-02-10 16:59:49 +0100 |
commit | d78178fa489c73713d555d2a70dd2bd5e3e5553d (patch) | |
tree | f7e8a9eaa5ab82c30d2e8f0cdbdbcfe8fae15c96 /gnu/packages/golang.scm | |
parent | 1e18d0733cf900cadd73eaaa99026500c5f525de (diff) | |
download | patches-d78178fa489c73713d555d2a70dd2bd5e3e5553d.tar patches-d78178fa489c73713d555d2a70dd2bd5e3e5553d.tar.gz |
gnu: gotestsum: Fix test failure.
* gnu/packages/golang.scm (gotestsum)[native-inputs]: Add
go-github-com-google-go-cmp-cmp, go-gotest-tools-internal-format,
go-gotest-tools-internal-difflib, go-gotest-tools-internal-source.
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index d0041749d0..b1e97eaf45 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -3204,6 +3204,17 @@ test when a comparison fails.") ("go-golang-org-x-crypto" ,go-golang-org-x-crypto) ("go-gotest-tools-assert" ,go-gotest-tools-assert) ("go-github-com-google-go-cmp-cmp" + ,go-github-com-google-go-cmp-cmp) + ;; TODO: This would be better as a propagated-input of + ;; go-gotest-tools-assert, but that does not work for + ;; some reason. + ("go-gotest-tools-internal-format" + ,go-gotest-tools-internal-format) + ("go-gotest-tools-internal-difflib" + ,go-gotest-tools-internal-difflib) + ("go-gotest-tools-internal-source" + ,go-gotest-tools-internal-source) + ("go-github-com-google-go-cmp-cmp" ,go-github-com-google-go-cmp-cmp))) (synopsis "Go test runner with output optimized for humans") (description "This package provides a @code{go test} runner with output |