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