From 232a1bcaae7f94cbef8f5fbdc26a6eae08aa7d14 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Thu, 7 Mar 2024 04:28:03 -0800 Subject: [PATCH] ci: remove include_eternal_tests as it is no longer needed in Aspect Workflows 5.9.18 (#60901) * ci: remove include_eternal_tests as it is no longer needed in Aspect Workflows 5.9.18 * test marking a test as eternal still gets executed --------- Co-authored-by: William Bezuidenhout --- .aspect/workflows/config.yaml | 2 -- dev/sg/internal/images/BUILD.bazel | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.aspect/workflows/config.yaml b/.aspect/workflows/config.yaml index 10a996c041e..8eda0f71f72 100644 --- a/.aspect/workflows/config.yaml +++ b/.aspect/workflows/config.yaml @@ -18,13 +18,11 @@ tasks: fix_target: //:configure # Checks that all tests are passing - test: - include_eternal_tests: true targets: - //... # exclude testing as it is executed in a seperate job - -//testing/... - test: - include_eternal_tests: true name: Integration/E2E targets: - //testing/... diff --git a/dev/sg/internal/images/BUILD.bazel b/dev/sg/internal/images/BUILD.bazel index bea2d67d376..ee49110d974 100644 --- a/dev/sg/internal/images/BUILD.bazel +++ b/dev/sg/internal/images/BUILD.bazel @@ -35,7 +35,7 @@ go_library( go_test( name = "images_test", - timeout = "short", + timeout = "eternal", srcs = [ "images_test.go", "pure_docker_test.go",