Files
cloud-services/pkg/utils/localtests/localtests.go

12 lines
292 B
Go

// Package localtests provides test utilities for local development.
package localtests
import "os"
// SkipIfNotLocal skips the test if not running locally
func SkipIfNotLocal(t interface{ Skip(...any) }) {
if os.Getenv("LOCAL_TESTS") != "true" {
t.Skip("Skipping local-only test")
}
}