mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-25 01:44:43 +01:00
14 lines
264 B
Go
14 lines
264 B
Go
package zreplcircleci
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func SkipOnCircleCI(t *testing.T, reasonFmt string, args ...interface{}) {
|
|
if os.Getenv("CIRCLECI") != "" {
|
|
t.Skipf("This test is skipped in CircleCI. Reason: %s", fmt.Sprintf(reasonFmt, args...))
|
|
}
|
|
}
|