Fix bazel config for backend integration tests (#59526)

Renamed this job when we got rid of HTTP because that's the only version we need to run now.

## Test plan

CI will fail if the new name is still wrong.
This commit is contained in:
Erik Seliger 2024-01-11 20:39:00 +01:00 committed by GitHub
parent 7823536328
commit 7e9ba142ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ tasks:
include_eternal_tests: true
targets:
- //...
- //testing:grpc_backend_integration_test
- //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

@ -10,7 +10,7 @@ func BazelOperations(buildOpts bk.BuildOptions, opts CoreTestOperationsOptions)
if !opts.AspectWorkflows {
ops = append(ops, bazelPrechecks())
if opts.IsMainBranch {
ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test", "//testing:grpc_backend_integration_test"))
ops = append(ops, bazelTest("//...", "//client/web:test", "//testing:codeintel_integration_test", "//testing:backend_integration_test"))
} else {
ops = append(ops, bazelTest("//...", "//client/web:test"))
}