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:
Berk D. Demir 2022-05-01 23:15:08 +00:00
parent 89864413b2
commit 17672c8de1

View file

@ -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";