1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-29 21:04:23 +02:00
rclone/fstest/testy/testy.go

16 lines
267 B
Go
Raw Normal View History

2020-06-15 21:25:42 +01:00
// Package testy contains test utilities for rclone
package testy
import (
"os"
"testing"
)
// SkipUnreliable skips this test if running on CI
func SkipUnreliable(t *testing.T) {
if os.Getenv("CI") == "" {
return
}
t.Skip("Skipping Unreliable Test on CI")
}