Skip to content

Commit 35d4e37

Browse files
committed
remove race check
1 parent c694bf0 commit 35d4e37

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.pipelines/templates/run-unit-tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ stages:
3939
steps:
4040
# Only run one go test per script
4141
- script: |
42-
set CGO_ENABLED=1
4342
cd azure-container-networking/
44-
go test -race -timeout 30m ./npm/... ./cni/... ./platform/...
43+
go test -timeout 30m ./npm/... ./cni/... ./platform/...
4544
retryCountOnTaskFailure: 3
4645
name: "TestWindows"
4746
displayName: "Run Windows Tests"

.pipelines/templates/unit-tests.stages.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ stages:
5252
- checkout: ACNReviewChanges
5353
clean: true
5454
- script: |
55-
set CGO_ENABLED=1
5655
cd azure-container-networking/
57-
go test -race -timeout 30m ./npm/... ./cni/... ./platform/...
56+
go test -timeout 30m ./npm/... ./cni/... ./platform/...
5857
retryCountOnTaskFailure: 3
5958
name: "TestWindows"
6059
displayName: "Run Windows Tests"

0 commit comments

Comments
 (0)