diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 22:42:51 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 22:42:57 +0100 |
| commit | f9606dc41553dcda920290aca08ad43b89a67296 (patch) | |
| tree | b0d07f39852ab80da91725540b6ac11b9feac1f6 | |
| parent | f0e12f74014ed080202cb1c43b564a418c4a8fc0 (diff) | |
gnu: go-github-com-docker-docker: Enable tests.
* gnu/packages/golang-xyz.scm (go-github-com-docker-docker):
[arguments] <tests?, test-subdirs>: Enable some portion of tests.
Change-Id: Iac96bd7ceb7916ab8d52ae41c3da690ef3e82dd2
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index fc061373a5..6b9884aae2 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8965,6 +8965,7 @@ interact with distribution components.") (license license:asl2.0))) (define-public go-github-com-docker-docker + ;; TODO: Move to (gnu packages docker). (package (name "go-github-com-docker-docker") (version "25.0.7") @@ -8985,7 +8986,47 @@ interact with distribution components.") (list #:import-path "github.com/docker/docker" #:skip-build? #t - #:tests? #f)) + #:test-subdirs + ;; XXX: Remove when all inputs are packaged. + #~(list "api/types/strslice" + "api/types/time" + "api/types/versions" + "builder/remotecontext/urlutil" + "cli/debug" + "daemon/links" + "daemon/network" + "errdefs" + "integration/plugin" + "integration/plugin/logging/cmd/discard" + "internal/mod" + "libnetwork/bitmap" + "libnetwork/etchosts" + "libnetwork/internal/caller" + "libnetwork/ipbits" + "libnetwork/options" + "libnetwork/portallocator" + "pkg/broadcaster" + "pkg/capabilities" + "pkg/directory" + "pkg/dmesg" + "pkg/fileutils" + "pkg/homedir" + "pkg/ioutils" + "pkg/longpath" + "pkg/meminfo" + "pkg/namesgenerator" + "pkg/parsers" + "pkg/parsers/kernel" + "pkg/pidfile" + "pkg/plugins/pluginrpc-gen" + "pkg/process" + "pkg/progress" + "pkg/stdcopy" + "pkg/stringid" + "pkg/useragent" + "plugin/v2" + "restartmanager" + "volume/drivers"))) (propagated-inputs (list go-github-com-containerd-containerd go-github-com-containerd-log |
