fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

build: disable ctags for TestBuilder (#308)

the test assumes that ctags is available. Since ctags is not essential
for the this test, we should disalbe it like we do in other tests.

+4 -1
+4 -1
build/builder_test.go
··· 490 490 }, 491 491 } 492 492 493 - createTestShard(t, indexDir, repositoryV1, 2) 493 + createTestShard(t, indexDir, repositoryV1, 2, func(o *Options) { 494 + o.DisableCTags = true 495 + }) 494 496 495 497 repositoryV2 := zoekt.Repository{ 496 498 Name: "repo", ··· 503 505 504 506 shards := createTestShard(t, indexDir, repositoryV2, 1, func(o *Options) { 505 507 o.IsDelta = true 508 + o.DisableCTags = true 506 509 }) 507 510 508 511 if len(shards) < 3 {