From de1302ac2bf431cddba01c683a0cd83a84067efa Mon Sep 17 00:00:00 2001 From: William Bezuidenhout Date: Wed, 17 Jan 2024 18:13:33 +0200 Subject: [PATCH] bazel: remove explicit running of backend_integration_test (#59671) they are executed automatically by bazel as part of //... --- .aspect/workflows/config.yaml | 1 - dev/ci/internal/ci/bazel_operations.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.aspect/workflows/config.yaml b/.aspect/workflows/config.yaml index aba8a63b009..ea1e89fe95e 100644 --- a/.aspect/workflows/config.yaml +++ b/.aspect/workflows/config.yaml @@ -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 diff --git a/dev/ci/internal/ci/bazel_operations.go b/dev/ci/internal/ci/bazel_operations.go index 4cb7d31e56e..299a5a36827 100644 --- a/dev/ci/internal/ci/bazel_operations.go +++ b/dev/ci/internal/ci/bazel_operations.go @@ -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")) }