diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-20 14:23:04 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:12 +0000 |
commit | 8d4f5743d2bcbb31571dc0bdea03a4e3fbbfe10d (patch) | |
tree | 7f09634af425f868f0c0cb42be91e415d8228231 | |
parent | 8cbdfdf92efc284f0ddd4b1b79b2e79ff67b05d0 (diff) |
gnu: gotestsum: Move to check.
* gnu/packages/golang.scm (gotestsum): Move from here ...
* gnu/packages/check.scm: ... to here.
Change-Id: I83f22e1f7dc1ad43340a02b60b75bf4e98b65474
-rw-r--r-- | gnu/packages/check.scm | 48 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 47 |
2 files changed, 48 insertions, 47 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 47047de59e..f23258ca56 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2019 Chris Marusich <[email protected]> ;;; Copyright © 2020 Lars-Dominik Braun <[email protected]> ;;; Copyright © 2020 Brice Waegeneire <[email protected]> +;;; Copyright © 2020 Danny Milosavljevic <[email protected]> ;;; Copyright © 2020 Josh Marshall <[email protected]> ;;; Copyright © 2020 Vinicius Monego <[email protected]> ;;; Copyright © 2020 Tanguy Le Carrour <[email protected]> @@ -1124,6 +1125,53 @@ generation.") similar to unit tests.") (license license:asl2.0))) +(define-public gotestsum + (package + (name "gotestsum") + (version "1.12.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gotestyourself/gotestsum") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fx92jh6ay4rk1ljbgp9b2m4fafqwy0a19q7lhdabgb1j8dvgxvs")))) + (build-system go-build-system) + (arguments + (list + #:import-path "gotest.tools/gotestsum" + #:test-flags + #~(list "-skip" + (string-join + (list "TestE2E_IgnoresWarnings" + "TestE2E_MaxFails_EndTestRun" + "TestScanTestOutput_TestTimeoutPanicRace/panic-race-2") + "|")) + ;; Run just unit test, integration tests from "testjson" require: run + ;; 'go test . -update' to automatically update + ;; testdata/summary/with-run-id to the new expected value.' + #:test-subdirs #~(list "cmd/..." "internal/..."))) + (native-inputs + (list go-github-com-bitfield-gotestdox + go-github-com-dnephin-pflag + go-github-com-fatih-color + go-github-com-fsnotify-fsnotify + go-github-com-google-go-cmp + go-github-com-google-shlex + go-golang-org-x-sync + go-golang-org-x-sys + go-golang-org-x-term + go-golang-org-x-tools + go-gotest-tools-v3)) + (synopsis "Go test runner with output optimized for humans") + (description "This package provides a @code{go test} runner with output +optimized for humans, JUnit XML for CI integration, and a summary of the +test results.") + (home-page "https://github.com/gotestyourself/gotestsum") + (license license:asl2.0))) + (define-public greatest (package (name "greatest") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 3f3bc47189..6eaf09a4d1 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4474,53 +4474,6 @@ a cron spec parser and job runner.") "This is a fork of another go-libvterm library for use with aerc.") (license license:expat)))) -(define-public gotestsum - (package - (name "gotestsum") - (version "1.12.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/gotestyourself/gotestsum") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0fx92jh6ay4rk1ljbgp9b2m4fafqwy0a19q7lhdabgb1j8dvgxvs")))) - (build-system go-build-system) - (arguments - (list - #:import-path "gotest.tools/gotestsum" - #:test-flags - #~(list "-skip" - (string-join - (list "TestE2E_IgnoresWarnings" - "TestE2E_MaxFails_EndTestRun" - "TestScanTestOutput_TestTimeoutPanicRace/panic-race-2") - "|")) - ;; Run just unit test, integration tests from "testjson" require: run - ;; 'go test . -update' to automatically update - ;; testdata/summary/with-run-id to the new expected value.' - #:test-subdirs #~(list "cmd/..." "internal/..."))) - (native-inputs - (list go-github-com-bitfield-gotestdox - go-github-com-dnephin-pflag - go-github-com-fatih-color - go-github-com-fsnotify-fsnotify - go-github-com-google-go-cmp - go-github-com-google-shlex - go-golang-org-x-sync - go-golang-org-x-sys - go-golang-org-x-term - go-golang-org-x-tools - go-gotest-tools-v3)) - (synopsis "Go test runner with output optimized for humans") - (description "This package provides a @code{go test} runner with output -optimized for humans, JUnit XML for CI integration, and a summary of the -test results.") - (home-page "https://github.com/gotestyourself/gotestsum") - (license license:asl2.0))) - (define-public go-github-com-macronut-go-tproxy (package (name "go-github-com-macronut-go-tproxy") |