Clean-up IWYU (#35314)

Clean-up IWYU stuff that were missed from 57d8462aee

Closes #35314

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/35314 from veblush:fix-at-head 45994caaa9
PiperOrigin-RevId: 591284034
pull/35326/head
Esun Kim 1 year ago committed by Copybara-Service
parent 585bdccf45
commit d22d2b9903
  1. 1
      tools/distrib/sanitize.sh
  2. 2
      tools/run_tests/run_tests_matrix.py
  3. 2
      tools/run_tests/sanity/check_test_filtering.py

@ -17,7 +17,6 @@ set -ex
cd $(dirname $0)/../..
tools/distrib/iwyu.sh || true
tools/buildgen/generate_projects.sh
tools/distrib/check_include_guards.py --fix
tools/distrib/check_naked_includes.py --fix || true

@ -226,7 +226,7 @@ def _create_test_jobs(extra_args=[], inner_jobs=_DEFAULT_INNER_JOBS):
test_jobs = []
# sanity tests
test_jobs += _generate_jobs(
languages=["sanity", "clang-tidy", "iwyu"],
languages=["sanity", "clang-tidy"],
configs=["dbg"],
platforms=["linux"],
labels=["basictests"],

@ -37,7 +37,7 @@ _LIST_OF_LANGUAGE_LABELS = [
"ruby",
]
_LIST_OF_PLATFORM_LABELS = ["linux", "macos", "windows"]
_LIST_OF_SANITY_TESTS = ["sanity", "clang-tidy", "iwyu"]
_LIST_OF_SANITY_TESTS = ["sanity", "clang-tidy"]
def has_sanity_tests(job):

Loading…
Cancel
Save