summaryrefslogtreecommitdiff
blob: c6b075998caf16c1b5ff500902933f3cab399203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
From 1a3938e8c133573f35abe58edd42204575aeffeb Mon Sep 17 00:00:00 2001
From: tastytea <tastytea@tastytea.de>
Date: Fri, 8 Sep 2023 20:01:03 +0200
Subject: [PATCH] skip some tests

reasons:
  - needs to be in a git repo
  - needs special test dependencies
  - requires network access
---
 modules/client_test.go                                        | 4 ++++
 .../resource_factories/create/create_integration_test.go      | 1 +
 2 files changed, 5 insertions(+)

diff --git a/modules/client_test.go b/modules/client_test.go
index ea910580f..b957ba984 100644
--- a/modules/client_test.go
+++ b/modules/client_test.go
@@ -68,6 +68,7 @@ github.com/gohugoio/hugoTestModules1_darwin/modh2_2@v1.4.0 github.com/gohugoio/h
 	}
 
 	c.Run("All", func(c *qt.C) {
+		c.Skip("Test dependencies not available")
 		client, clean := newClient(c, func(cfg *ClientConfig) {
 			cfg.ModuleConfig = DefaultModuleConfig
 		}, defaultImport)
@@ -107,6 +108,7 @@ project github.com/gohugoio/hugoTestModules1_darwin/modh2_2_2@v1.3.0+vendor
 	})
 
 	c.Run("IgnoreVendor", func(c *qt.C) {
+		c.Skip("Test dependencies not available")
 		client, clean := newClient(
 			c, func(cfg *ClientConfig) {
 				cfg.ModuleConfig = DefaultModuleConfig
@@ -125,6 +127,7 @@ project github.com/gohugoio/hugoTestModules1_darwin/modh2_2_2@v1.3.0+vendor
 	})
 
 	c.Run("NoVendor", func(c *qt.C) {
+		c.Skip("Test dependencies not available")
 		mcfg := DefaultModuleConfig
 		mcfg.NoVendor = "**"
 		client, clean := newClient(
@@ -144,6 +147,7 @@ project github.com/gohugoio/hugoTestModules1_darwin/modh2_2_2@v1.3.0+vendor
 	})
 
 	c.Run("VendorClosest", func(c *qt.C) {
+		c.Skip("Test dependencies not available")
 		mcfg := DefaultModuleConfig
 		mcfg.VendorClosest = true
 
diff --git a/resources/resource_factories/create/create_integration_test.go b/resources/resource_factories/create/create_integration_test.go
index 61bc17adb..13cd6f33f 100644
--- a/resources/resource_factories/create/create_integration_test.go
+++ b/resources/resource_factories/create/create_integration_test.go
@@ -25,6 +25,7 @@ import (
 )
 
 func TestGetRemoteHead(t *testing.T) {
+	t.Skip("Requires network access")
 	files := `
 -- config.toml --
 [security]
-- 
2.43.0