bazel: remove explicit running of backend_integration_test (#59671)

they are executed automatically by bazel as part of //...
This commit is contained in:
William Bezuidenhout 2024-01-17 18:13:33 +02:00 committed by GitHub
parent 54dd821f56
commit de1302ac2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -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"))
}