Skip to content
Snippets Groups Projects
  • Volker Schukai's avatar
    562eff45
    chore: task · 562eff45
    Volker Schukai authored
    chore: Update vendorHash to null
    
    chore: Update vendorHash to null
    
    chore: update go
    
    chore: Update vendorHash to null
    
    chore: update
    
    chore: update
    
    chore: UPdate
    
    chore: Update vendorHash to null
    
    chore: update
    
    chore: Update vendorHash to sha256-6zNRYYddNcOx6G9wSKGv89CfSCxrG0qpSDfBStwNdks=
    
    chore: update
    
    x
    
    x
    
    u
    
    x
    
    x
    Verified
    562eff45
    History
    chore: task
    Volker Schukai authored
    chore: Update vendorHash to null
    
    chore: Update vendorHash to null
    
    chore: update go
    
    chore: Update vendorHash to null
    
    chore: update
    
    chore: update
    
    chore: UPdate
    
    chore: Update vendorHash to null
    
    chore: update
    
    chore: Update vendorHash to sha256-6zNRYYddNcOx6G9wSKGv89CfSCxrG0qpSDfBStwNdks=
    
    chore: update
    
    x
    
    x
    
    u
    
    x
    
    x
go.test.sh 257 B
#!/usr/bin/env bash

set -e
echo "" >coverage.txt

for d in $(go list ./... | grep -v vendor); do
  go test -race -coverprofile=profile.out -covermode=atomic "$d"
  if [ -f profile.out ]; then
    cat profile.out >>coverage.txt
    rm profile.out
  fi
done