We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c5dc7 commit cade678Copy full SHA for cade678
.pipelines/templates/run-unit-tests.yaml
@@ -137,8 +137,7 @@ stages:
137
138
# Function to run the test and capture output
139
def run_test():
140
- cmd_gotest = 'go test -timeout 30m -mod=readonly -buildvcs=false -tags "unit" '
141
- cmd_gotest += f"--skip 'TestE2E*' -covermode atomic -coverprofile={coverage_out} ./npm/... ./cni/... ./platform/..."
+ cmd_gotest = "go test -timeout 30m -covermode atomic -coverprofile={coverage_out} ./npm/... ./cni/... ./platform/..."
142
cmd_junitreport = f'{junit_report_bin} -set-exit-code -in {report_dir}/test.log -out {junit_xml} -iocopy'
143
cmd_gocover = f'go tool cover -func={coverage_out}'
144
0 commit comments