aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/fly/flydns/flydns_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/fly/flydns/flydns_test.go b/web/fly/flydns/flydns_test.go
index 9145ed4..17576ef 100644
--- a/web/fly/flydns/flydns_test.go
+++ b/web/fly/flydns/flydns_test.go
@@ -1,10 +1,15 @@
package flydns
import (
+ "os"
"testing"
)
func TestGetApps(t *testing.T) {
+ if os.Getenv("DO_FLY") == "" {
+ t.Skip()
+ }
+
// Call the function to be tested
result, err := GetApps()