Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit de48961

Browse files
committed
Add regex based skip list for jager integration tests
This would help us to live with few failing tests. Signed-off-by: Arunprasad Rajkumar <[email protected]>
1 parent 79651c6 commit de48961

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

pkg/tests/end_to_end_tests/jaeger_store_integration_test.go

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func TestJaegerStorageIntegration(t *testing.T) {
3737
cfg := &ingestor.Cfg{
3838
InvertedLabelsCacheSize: cache.DefaultConfig.InvertedLabelsCacheSize,
3939
NumCopiers: runtime.NumCPU() / 2,
40-
TracesAsyncAcks: true,
40+
TracesAsyncAcks: true, // To make GetLargeSpans happy, otherwise it takes quite a few time to ingest.
4141
}
4242
ingestor, err := ingstr.NewPgxIngestorForTests(pgxconn.NewPgxConn(db), cfg)
4343
require.NoError(t, err)
@@ -53,6 +53,23 @@ func TestJaegerStorageIntegration(t *testing.T) {
5353
SpanWriter: writer,
5454
CleanUp: func() error { return nil },
5555
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+
},
5673
}
5774
si.IntegrationTestAll(t.(*testing.T))
5875
})

0 commit comments

Comments
 (0)