Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ all: docker
## Run unit tests
## Ignore all tests under the cloudbuild/ tree as these targets are end-to-end
test:
go test `go list ./... | grep -v /cloudbuild`
go test -race `go list ./... | grep -v /cloudbuild`

## Targets below are for integration testing only

Expand Down
2 changes: 1 addition & 1 deletion third_party/meshnet/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ all: docker

## Run unit tests
test:
go test ./...
go test -race ./...

## Run unit tests for Reconciliation
recon-test:
Expand Down
1 change: 1 addition & 0 deletions third_party/meshnet/daemon/cni/cni.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package cni handles CNI configuration file installation and cleanup for meshnet.
package cni

import (
Expand Down
Loading
Loading