diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-19 13:07:28 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:08 +0000 |
commit | 5b2176105e74b563711925798327d1484234eb18 (patch) | |
tree | b222c4815d9d5f1c22aaab2b2700310df38b86f1 /gnu/packages/golang-check.scm | |
parent | da6d33d74a8476b1412996071f1817c9f1c7d50a (diff) |
gnu: go-github-com-jackc-pgmock: Enable tests.
* gnu/packages/golang-check.scm (go-github-com-jackc-pgmock)
[arguments] <tests?>: Activate them.
[native-inputs]: Add go-github-com-jackc-pgconn-bootstrap and
go-github-com-stretchr-testify.
* gnu/packages/golang-xyz.scm (go-github-com-jackc-pgconn-bootstrap):
New variable.
Change-Id: I8dc5cef1dcf7d6dd7550a1d805810d468205c607
Diffstat (limited to 'gnu/packages/golang-check.scm')
-rw-r--r-- | gnu/packages/golang-check.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index 3d3d678729..108db31883 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm @@ -692,8 +692,10 @@ used in go-github-com-jackc-pgx.") (build-system go-build-system) (arguments (list - #:tests? #f ; cycles with go-github-com-jackc-pgconn #:import-path "github.com/jackc/pgmock")) + (native-inputs + (list go-github-com-jackc-pgconn-bootstrap + go-github-com-stretchr-testify)) (propagated-inputs (list go-github-com-jackc-pgproto3-v2)) (home-page "https://github.com/jackc/pgmock") |