@@ -12,6 +12,9 @@ import (
12
12
)
13
13
14
14
func TestGetTxPointerBasicIntegration (t * testing.T ) {
15
+ if testing .Short () {
16
+ t .Skip ("skipping integration test" )
17
+ }
15
18
ctx := context .Background ()
16
19
dbpool , dbclose := testsetup .NewTestDBPool (ctx , t , gnosisDatabase .Definition )
17
20
t .Cleanup (dbclose )
@@ -34,6 +37,9 @@ func TestGetTxPointerBasicIntegration(t *testing.T) {
34
37
}
35
38
36
39
func TestGetTxPointerInfiniteIntegration (t * testing.T ) {
40
+ if testing .Short () {
41
+ t .Skip ("skipping integration test" )
42
+ }
37
43
ctx := context .Background ()
38
44
dbpool , dbclose := testsetup .NewTestDBPool (ctx , t , gnosisDatabase .Definition )
39
45
t .Cleanup (dbclose )
@@ -62,6 +68,9 @@ func TestGetTxPointerInfiniteIntegration(t *testing.T) {
62
68
}
63
69
64
70
func TestGetTxPointerOutdatedIntegration (t * testing.T ) {
71
+ if testing .Short () {
72
+ t .Skip ("skipping integration test" )
73
+ }
65
74
ctx := context .Background ()
66
75
dbpool , dbclose := testsetup .NewTestDBPool (ctx , t , gnosisDatabase .Definition )
67
76
t .Cleanup (dbclose )
@@ -91,6 +100,9 @@ func TestGetTxPointerOutdatedIntegration(t *testing.T) {
91
100
}
92
101
93
102
func TestGetTxPointerMissingIntegration (t * testing.T ) {
103
+ if testing .Short () {
104
+ t .Skip ("skipping integration test" )
105
+ }
94
106
ctx := context .Background ()
95
107
dbpool , dbclose := testsetup .NewTestDBPool (ctx , t , gnosisDatabase .Definition )
96
108
t .Cleanup (dbclose )
0 commit comments