aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard/app/util_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/dashboard/app/util_test.go b/dashboard/app/util_test.go
index 46dcc1f45..dcae8ace6 100644
--- a/dashboard/app/util_test.go
+++ b/dashboard/app/util_test.go
@@ -12,6 +12,7 @@ import (
"io/ioutil"
"net/http"
"net/http/httptest"
+ "os"
"path/filepath"
"reflect"
"runtime"
@@ -41,6 +42,9 @@ type Ctx struct {
}
func NewCtx(t *testing.T) *Ctx {
+ if os.Getenv("TRAVIS") != "" {
+ t.Skip("skipping test on Travis (no dev_appserver.py)")
+ }
t.Parallel()
inst, err := aetest.NewInstance(&aetest.Options{
// Without this option datastore queries return data with slight delay,