Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / servers / pufferpanel / skip-network-tests.patch
blobb2bddd191d0b92eb606079925ac4f5c043624a65
1 diff --git a/operations/javadl/javadl_test.go b/operations/javadl/javadl_test.go
2 index 3938a58c..a51e2f4a 100644
3 --- a/operations/javadl/javadl_test.go
4 +++ b/operations/javadl/javadl_test.go
5 @@ -22,6 +22,8 @@ import (
8 func Test_downloadJava(t *testing.T) {
9 + t.Skip("requires network access")
11 tests := []struct {
12 name string
13 wantErr bool
14 diff --git a/operations/spongedl/spongedl_test.go b/operations/spongedl/spongedl_test.go
15 index efb1665c..1b93be8c 100644
16 --- a/operations/spongedl/spongedl_test.go
17 +++ b/operations/spongedl/spongedl_test.go
18 @@ -5,6 +5,8 @@ import (
21 func TestSpongeDl_Run(t *testing.T) {
22 + t.Skip("requires network access")
24 type fields struct {
25 Recommended bool
26 SpongeType string
27 diff --git a/operations/steamgamedl/dl_test.go b/operations/steamgamedl/dl_test.go
28 index f4df4bf3..f7cd9681 100644
29 --- a/operations/steamgamedl/dl_test.go
30 +++ b/operations/steamgamedl/dl_test.go
31 @@ -19,6 +19,8 @@ import (
34 func Test_downloadSteamcmd(t *testing.T) {
35 + t.Skip("requires network access")
37 tests := []struct {
38 name string
39 wantErr bool
40 diff --git a/services/templates_test.go b/services/templates_test.go
41 index 5305dbc0..127efc54 100644
42 --- a/services/templates_test.go
43 +++ b/services/templates_test.go
44 @@ -9,6 +9,8 @@ import (
47 func TestTemplate_GetImportableTemplates(t1 *testing.T) {
48 + t1.Skip("requires network access")
50 t1.Run("GetImportableTemplates", func(t1 *testing.T) {
51 t := &Template{}
53 @@ -26,6 +28,8 @@ func TestTemplate_GetImportableTemplates(t1 *testing.T) {
56 func TestTemplate_ImportTemplates(t1 *testing.T) {
57 + t1.Skip("requires network access")
59 t1.Run("GetImportableTemplates", func(t1 *testing.T) {
60 db := prepareDatabase(t1)
61 if t1.Failed() {