diff --git a/BUILD.bazel b/BUILD.bazel index debc2026..6b0968f5 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -6,6 +6,7 @@ load( "bzlformat_pkg", ) load("//bzltidy:defs.bzl", "tidy", "tidy_all") +load("//ci:defs.bzl", "ci_workflow") load("//shlib/rules:execute_binary.bzl", "execute_binary") load("//tests:integration_test_common.bzl", "INTEGRATION_TEST_TAGS") load("//updatesrc:defs.bzl", "updatesrc_update_all") @@ -237,15 +238,14 @@ test_suite( visibility = ["//:__subpackages__"], ) -# GH368: Enable when this is generating the proper output -# ci_workflow( -# name = "ci_workflow", -# test_params = [ -# "{}:all_test_params".format(pkg) -# for pkg in _INTEGRATION_TEST_PKGS -# ], -# workflow_yml = ".github/workflows/ci.yml", -# ) +ci_workflow( + name = "ci_workflow", + test_params = [ + "{}:all_test_params".format(pkg) + for pkg in _INTEGRATION_TEST_PKGS + ], + workflow_yml = ".github/workflows/ci.yml", +) bzl_library( name = "deps", diff --git a/tests/bzltidy_tests/BUILD.bazel b/tests/bzltidy_tests/BUILD.bazel index 70d923d5..cdcecb85 100644 --- a/tests/bzltidy_tests/BUILD.bazel +++ b/tests/bzltidy_tests/BUILD.bazel @@ -72,9 +72,6 @@ ci_integration_test_params( "linux", "macos", ], - test_names = integration_test_utils.bazel_integration_test_names( - "tidy_all_test", - bazel_binaries.versions.all, - ), + test_names = ["tidy_all_test"], visibility = ["//:__subpackages__"], )