mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
5 lines
248 B
Bash
Executable file
5 lines
248 B
Bash
Executable file
#!/bin/sh
|
|
if [ -z "$GO" ]; then
|
|
GO=go
|
|
fi
|
|
exec $GO test -tags 'cover_main debugflags' -coverpkg 'github.com/foxcpp/maddy,github.com/foxcpp/maddy/pkg/...,github.com/foxcpp/maddy/internal/...' -cover -covermode atomic -c cover_test.go -o maddy.cover
|