mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +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...))
|
||
|
}
|
||
|
}
|