mirror of
https://github.com/prymitive/karma
synced 2026-05-05 03:16:51 +00:00
36 lines
603 B
Bash
Executable File
36 lines
603 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 &
|
|
|
|
sleep 5
|
|
killall karma.test
|
|
|
|
rm karma.test
|