gucci: Disable integration tests.
The version of Ginkgo it relies on might be the problem. Bug fixed by #173702 runs the previously skipped tests for this package.
This commit is contained in:
parent
89864413b2
commit
17672c8de1
1 changed files with 8 additions and 0 deletions
|
@ -21,6 +21,14 @@ buildGoModule rec {
|
|||
|
||||
checkFlags = [ "-short" ];
|
||||
|
||||
# Integration tests rely on Ginkgo but fail.
|
||||
# Related: https://github.com/onsi/ginkgo/issues/602
|
||||
#
|
||||
# Disable integration tests.
|
||||
preCheck = ''
|
||||
buildFlagsArray+=("-run" "[^(TestIntegration)]")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple CLI templating tool written in golang";
|
||||
homepage = "https://github.com/noqcks/gucci";
|
||||
|
|
Loading…
Reference in a new issue