File tree 5 files changed +15
-4
lines changed
5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
version : 1.0
3
3
root : " ./.tests/cloud_test/"
4
- timeout : 7200 # 2 hour total total timeout
4
+ timeout : 10800 # 3 hour total total timeout
5
5
shuffle-enabled : true
6
6
statistics :
7
7
enabled : true
Original file line number Diff line number Diff line change 1
1
---
2
2
version : 1.0
3
3
root : " ./.tests/cloud_test_calico/"
4
- timeout : 7200 # 2 hour total total timeout
4
+ timeout : 10800 # 3 hour total total timeout
5
5
shuffle-enabled : true
6
6
statistics :
7
7
enabled : true
Original file line number Diff line number Diff line change 83
83
- name : Install cloudtest # 3. Install cloudtest
84
84
run : |
85
85
go get github.com/networkservicemesh/cloudtest@master
86
+ # GOPROXY=direct go get github.com/Mixaster995/cloudtest@no-cleanup
86
87
env :
87
88
GO111MODULE : on
88
89
GOBIN : /bin
Original file line number Diff line number Diff line change 1
- module github.com/networkservicemesh/integration -k8s-packet
1
+ module github.com/networkservicemesh/integratiohuhgyn -k8s-packet
2
2
3
3
go 1.16
4
4
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
23
23
"github.com/stretchr/testify/suite"
24
24
25
- "github.com/networkservicemesh/integration-tests/suites/basic "
25
+ "github.com/networkservicemesh/integration-tests/suites/calico "
26
26
"github.com/networkservicemesh/integration-tests/suites/heal"
27
27
"github.com/networkservicemesh/integration-tests/suites/memory"
28
28
"github.com/networkservicemesh/integration-tests/suites/multiforwarder"
@@ -42,6 +42,9 @@ func TestMemory(t *testing.T) {
42
42
}
43
43
44
44
func TestSRIOV (t * testing.T ) {
45
+ if isCalico () {
46
+ t .Skip ("not available with Calico" )
47
+ }
45
48
suite .Run (t , new (sriov.Suite ))
46
49
}
47
50
@@ -69,3 +72,10 @@ func TestBasic(t *testing.T) {
69
72
}
70
73
suite .Run (t , new (basic.Suite ))
71
74
}
75
+
76
+ func TestCalico (t * testing.T ) {
77
+ if ! isCalico () {
78
+ t .Skip ("not available without Calico" )
79
+ }
80
+ suite .Run (t , new (calico.Suite ))
81
+ }
You can’t perform that action at this time.
0 commit comments