Skip to content

Commit

Permalink
Merge pull request #77 from jschintag/unit-test-no-cgo
Browse files Browse the repository at this point in the history
Disable CGO when running unit-tests
  • Loading branch information
kubevirt-bot authored Dec 3, 2024
2 parents c2d9ba6 + 37e3cac commit 65a18c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $(GO):

# Run unit tests
test: $(GO)
$(GO) test ./pkg/... -coverprofile cover.out
CGO_ENABLED=0 $(GO) test ./pkg/... -coverprofile cover.out

# Run e2e tests
functest: $(GO)
Expand Down

0 comments on commit 65a18c8

Please sign in to comment.