@@ -37,7 +37,7 @@ func TestJaegerStorageIntegration(t *testing.T) {
37
37
cfg := & ingestor.Cfg {
38
38
InvertedLabelsCacheSize : cache .DefaultConfig .InvertedLabelsCacheSize ,
39
39
NumCopiers : runtime .NumCPU () / 2 ,
40
- TracesAsyncAcks : true ,
40
+ TracesAsyncAcks : true , // To make GetLargeSpans happy, otherwise it takes quite a few time to ingest.
41
41
}
42
42
ingestor , err := ingstr .NewPgxIngestorForTests (pgxconn .NewPgxConn (db ), cfg )
43
43
require .NoError (t , err )
@@ -53,6 +53,23 @@ func TestJaegerStorageIntegration(t *testing.T) {
53
53
SpanWriter : writer ,
54
54
CleanUp : func () error { return nil },
55
55
Refresh : func () error { return nil },
56
+ SkipList : []string {
57
+ "GetLargeSpans" ,
58
+ "FindTraces/Tags_in_one_spot_-_Tags" ,
59
+ "FindTraces/Tags_in_one_spot_-_Logs" ,
60
+ "FindTraces/Tags_in_one_spot_-_Process" ,
61
+ "FindTraces/default" ,
62
+ "FindTraces/Tags_\\ +_Operation_name$" ,
63
+ "FindTraces/Tags_\\ +_Operation_name_\\ +_max_Duration$" ,
64
+ "FindTraces/Tags_\\ +_Operation_name_\\ +_Duration_range$" ,
65
+ "FindTraces/Tags_\\ +_Duration_range$" ,
66
+ "FindTraces/Tags_\\ +_max_Duration$" ,
67
+ "FindTraces/Multi-spot_Tags_\\ +_Operation_name_\\ +_max_Duration" ,
68
+ "FindTraces/Multi-spot_Tags_\\ +_Operation_name_\\ +_Duration_range" ,
69
+ "FindTraces/Multi-spot_Tags_\\ +_Duration_range" ,
70
+ "FindTraces/Multi-spot_Tags_\\ +_max_Duration" ,
71
+ "FindTraces/Multiple_Traces" ,
72
+ },
56
73
}
57
74
si .IntegrationTestAll (t .(* testing.T ))
58
75
})
0 commit comments