Skip to content

Commit a9a5370

Browse files
jannikluhnulope
authored andcommitted
Add missing integration test skips
1 parent adaa11a commit a9a5370

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

rolling-shutter/keyperimpl/gnosis/newslot_test.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ import (
1212
)
1313

1414
func TestGetTxPointerBasicIntegration(t *testing.T) {
15+
if testing.Short() {
16+
t.Skip("skipping integration test")
17+
}
1518
ctx := context.Background()
1619
dbpool, dbclose := testsetup.NewTestDBPool(ctx, t, gnosisDatabase.Definition)
1720
t.Cleanup(dbclose)
@@ -34,6 +37,9 @@ func TestGetTxPointerBasicIntegration(t *testing.T) {
3437
}
3538

3639
func TestGetTxPointerInfiniteIntegration(t *testing.T) {
40+
if testing.Short() {
41+
t.Skip("skipping integration test")
42+
}
3743
ctx := context.Background()
3844
dbpool, dbclose := testsetup.NewTestDBPool(ctx, t, gnosisDatabase.Definition)
3945
t.Cleanup(dbclose)
@@ -62,6 +68,9 @@ func TestGetTxPointerInfiniteIntegration(t *testing.T) {
6268
}
6369

6470
func TestGetTxPointerOutdatedIntegration(t *testing.T) {
71+
if testing.Short() {
72+
t.Skip("skipping integration test")
73+
}
6574
ctx := context.Background()
6675
dbpool, dbclose := testsetup.NewTestDBPool(ctx, t, gnosisDatabase.Definition)
6776
t.Cleanup(dbclose)
@@ -91,6 +100,9 @@ func TestGetTxPointerOutdatedIntegration(t *testing.T) {
91100
}
92101

93102
func TestGetTxPointerMissingIntegration(t *testing.T) {
103+
if testing.Short() {
104+
t.Skip("skipping integration test")
105+
}
94106
ctx := context.Background()
95107
dbpool, dbclose := testsetup.NewTestDBPool(ctx, t, gnosisDatabase.Definition)
96108
t.Cleanup(dbclose)

0 commit comments

Comments
 (0)