mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
43 lines
687 B
Bash
Executable File
43 lines
687 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
trap cleanup INT
|
|
|
|
function cleanup() {
|
|
rm -f profile.*
|
|
exit
|
|
}
|
|
|
|
PKGS=$(go list ./... | grep -vE 'prymitive/karma/internal/mapper/v017/(client|models)')
|
|
COVERPKG=$(echo "$PKGS" | tr '\n' ',')
|
|
|
|
go test \
|
|
-coverpkg="$COVERPKG" \
|
|
-c \
|
|
-tags testrunmain \
|
|
./cmd/karma
|
|
|
|
ALERTMANAGER_URI=http://localhost \
|
|
ALERTMANAGER_INTERVAL=1s \
|
|
LISTEN_ADDRESS=127.0.0.1 \
|
|
LISTEN_PORT=0 \
|
|
LOG_LEVEL=fatal \
|
|
LOG_CONFIG=false \
|
|
./karma.test \
|
|
-test.run '^TestRunMain$' \
|
|
-test.coverprofile=profile.main.1 &
|
|
PID=$!
|
|
|
|
sleep 10
|
|
kill $PID
|
|
sleep 1
|
|
|
|
while kill -0 "$PID"; do
|
|
echo "Waiting for $PID to finish"
|
|
sleep 1
|
|
done
|
|
|
|
rm karma.test
|