mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 14:51:44 +00:00
bazel: remove explicit running of backend_integration_test (#59671)
they are executed automatically by bazel as part of //...
This commit is contained in:
parent
54dd821f56
commit
de1302ac2b
@ -31,7 +31,6 @@ tasks:
|
||||
include_eternal_tests: true
|
||||
targets:
|
||||
- //...
|
||||
- //testing:backend_integration_test
|
||||
# This target should only really run when on main which we aren't handling. For the time being while we
|
||||
# evaluate Aspect Workflows it is ok
|
||||
# TODO(burmudar): Let this only run on main branch
|
||||
|
||||
@ -9,7 +9,7 @@ func BazelOperations(buildOpts bk.BuildOptions, opts CoreTestOperationsOptions)
|
||||
ops := []operations.Operation{bazelPrechecks()}
|
||||
if !opts.AspectWorkflows {
|
||||
if opts.IsMainBranch {
|
||||
ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test", "//testing:backend_integration_test"))
|
||||
ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test"))
|
||||
} else {
|
||||
ops = append(ops, bazelTest("//...", "//client/web:test"))
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user