oauth2's turn

This commit is contained in:
tobi 2025-04-25 12:05:45 +02:00
commit 806f184f3a
38 changed files with 49 additions and 49 deletions

View file

@ -1,12 +0,0 @@
#!/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