chore(ci): remove GOEXPERIMENT=coverageredesign (#4988)

This commit is contained in:
Julio Lopez
2025-11-13 21:58:56 -08:00
committed by GitHub
parent 0875010b1e
commit 3619aacb46
2 changed files with 1 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ make test-with-coverage
```
**Output:** `coverage.txt`
**Time:** ~3-5 minutes
**Note:** Used by Code Coverage workflow. Sets KOPIA_COVERAGE_TEST=1 and GOEXPERIMENT=nocoverageredesign.
**Note:** Used by Code Coverage workflow. Sets KOPIA_COVERAGE_TEST=1
### Index Blob Tests (Separate)
```bash

View File

@@ -275,7 +275,6 @@ dev-deps:
GO111MODULE=off go get -u github.com/sqs/goreturns
test-with-coverage: export KOPIA_COVERAGE_TEST=1
test-with-coverage: export GOEXPERIMENT=nocoverageredesign
test-with-coverage: export TESTING_ACTION_EXE ?= $(TESTING_ACTION_EXE)
test-with-coverage: $(gotestsum) $(TESTING_ACTION_EXE)
$(GO_TEST) $(UNIT_TEST_RACE_FLAGS) -tags testing -count=$(REPEAT_TEST) -short -covermode=atomic -coverprofile=coverage.txt --coverpkg $(COVERAGE_PACKAGES) -timeout $(UNIT_TESTS_TIMEOUT) ./...