This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
set -e
echo"" > coverage.txt
for d in $(go list ./internal/...);do
echo$d
# 部分sdk内部有并发问题,无法通过检查
go test -race -coverprofile=profile.out -covermode=atomic $d