mirror of
https://github.com/safedep/vet.git
synced 2025-12-11 17:44:20 -06:00
15 lines
215 B
Go
15 lines
215 B
Go
package test
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
"testing"
|
|
)
|
|
|
|
func verifyE2E(t *testing.T) {
|
|
s, err := strconv.ParseBool(os.Getenv("VET_E2E"))
|
|
if (err != nil) || (!s) {
|
|
t.Skip("E2E is disabled in the environment")
|
|
}
|
|
}
|