--- a/host/host_test.go
+++ b/host/host_test.go
@@ -2,6 +2,7 @@
 
 import (
 	"fmt"
+	"os"
 	"testing"
 )
 
@@ -40,6 +41,9 @@
 }
 
 func TestUsers(t *testing.T) {
+	if os.Getenv("CI") != "" {
+		t.Skip("Skip CI");
+	}
 	v, err := Users()
 	if err != nil {
 		t.Errorf("error %v", err)
