Compare commits

..

1 Commits

Author SHA1 Message Date
Ilya Kuznetsov ffc449949d
Merge 15110753dd into e81ec4ee23 2025-02-10 17:27:10 +01:00
2 changed files with 5 additions and 6 deletions

View File

@ -28,7 +28,7 @@ test:
cover: cover:
rm -fr ./acceptance/build/cover/ rm -fr ./acceptance/build/cover/
VERBOSE_TEST=1 CLI_GOCOVERDIR=build/cover ${GOTESTSUM_CMD} -- -coverprofile=coverage.txt ${PACKAGES} CLI_GOCOVERDIR=build/cover ${GOTESTSUM_CMD} -- -coverprofile=coverage.txt ${PACKAGES}
rm -fr ./acceptance/build/cover-merged/ rm -fr ./acceptance/build/cover-merged/
mkdir -p acceptance/build/cover-merged/ mkdir -p acceptance/build/cover-merged/
go tool covdata merge -i $$(printf '%s,' acceptance/build/cover/* | sed 's/,$$//') -o acceptance/build/cover-merged/ go tool covdata merge -i $$(printf '%s,' acceptance/build/cover/* | sed 's/,$$//') -o acceptance/build/cover-merged/
@ -61,6 +61,6 @@ integration: vendor
$(INTEGRATION) $(INTEGRATION)
integration-short: vendor integration-short: vendor
VERBOSE_TEST=1 $(INTEGRATION) -short $(INTEGRATION) -short
.PHONY: lint tidy lintcheck fmt test cover showcover build snapshot vendor schema integration integration-short acc-cover acc-showcover docs .PHONY: lint tidy lintcheck fmt test cover showcover build snapshot vendor schema integration integration-short acc-cover acc-showcover docs

View File

@ -32,7 +32,6 @@ import (
var ( var (
KeepTmp bool KeepTmp bool
NoRepl bool NoRepl bool
VerboseTest bool = os.Getenv("VERBOSE_TEST") != ""
) )
// In order to debug CLI running under acceptance test, set this to full subtest name, e.g. "bundle/variables/empty" // In order to debug CLI running under acceptance test, set this to full subtest name, e.g. "bundle/variables/empty"
@ -413,7 +412,7 @@ func doComparison(t *testing.T, repls testdiff.ReplacementsContext, dirRef, dirN
testutil.WriteFile(t, pathRef, valueNew) testutil.WriteFile(t, pathRef, valueNew)
} }
if VerboseTest && !equal && printedRepls != nil && !*printedRepls { if !equal && printedRepls != nil && !*printedRepls {
*printedRepls = true *printedRepls = true
var items []string var items []string
for _, item := range repls.Repls { for _, item := range repls.Repls {