diff --git a/.aspect/workflows/config.yaml b/.aspect/workflows/config.yaml index 00d05eab..7c868cad 100644 --- a/.aspect/workflows/config.yaml +++ b/.aspect/workflows/config.yaml @@ -5,5 +5,9 @@ tasks: - lint: - format: - test: + bazel: + flags: + - --test_tag_filters=-skip-on-aspect-workflows + notifications: github: {} diff --git a/oci_python_image/hello_world/BUILD.bazel b/oci_python_image/hello_world/BUILD.bazel index 01642b32..b052918b 100644 --- a/oci_python_image/hello_world/BUILD.bazel +++ b/oci_python_image/hello_world/BUILD.bazel @@ -104,7 +104,11 @@ py_test( # the test Setup has to do some sophisticated work to load each layer. data = [":platform_image"], main = "app_test.py", - tags = ["requires-docker"], + tags = [ + "requires-docker", + # TODO(sahin/derek?): this test passes on GitHub Actions runners but fails on AW + "skip-on-aspect-workflows", + ], deps = [ requirement("testcontainers"), ],