Skip to content

[TEST] No-trigger test: tests/e2e/ change - #3008

Open
rashmigottipati wants to merge 6 commits into
mainfrom
test-no-trigger-e2e-change
Open

[TEST] No-trigger test: tests/e2e/ change#3008
rashmigottipati wants to merge 6 commits into
mainfrom
test-no-trigger-e2e-change

Conversation

@rashmigottipati

@rashmigottipati rashmigottipati commented Aug 7, 2026

Copy link
Copy Markdown
Collaborator

Test PR to verify if_changed exclusions

This PR modifies a file in tests/e2e/ which should NOT TRIGGER transformers tests (excluded).

Part of verifying the if_changed include/exclude pattern in #2983

@coderabbitai

coderabbitai Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Auto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 56582c2c-37a4-4bf3-8f00-40209364da01

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@mergify mergify Bot added the two-reviews When a PR requires two reviews label Aug 7, 2026
@mergify

mergify Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

Merge Protections

🔴 2 of 2 protections blocking · waiting on 👀 reviews

Protection Waiting on
🔴 Require one maintainer review 👀 reviews
🔴 Require two reviews 👀 reviews

🔴 Require one maintainer review

Waiting for any of

  • approved-reviews-by=HDCharles
  • approved-reviews-by=brian-dellabetta
  • approved-reviews-by=dsikka
  • approved-reviews-by=kylesayrs
  • approved-reviews-by=yiliu30
This rule is failing.

All PRs must have at least one approving review from a maintainer before merging.

  • any of:
    • approved-reviews-by=HDCharles
    • approved-reviews-by=brian-dellabetta
    • approved-reviews-by=dsikka
    • approved-reviews-by=kylesayrs
    • approved-reviews-by=yiliu30
  • #changes-requested-reviews-by = 0

🔴 Require two reviews

Waiting for

  • #approved-reviews-by >= 2
This rule is failing.

PRs labelled "two-reviews" must have at least two approving reviews before merging.

  • #approved-reviews-by >= 2
  • #changes-requested-reviews-by = 0

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request simplifies the Buildkite pipeline configuration for H100 and L4 GPU tests by replacing manual git diff shell scripts with native Buildkite if_changed conditions, splitting the transformers tests into separate branch-push and PR-specific steps. The reviewer identified a critical issue with the conditional checks: in Buildkite, build.pull_request evaluates to false rather than null on branch builds. As a result, using == null and != null will cause incorrect step execution behavior, and these checks should be updated to compare against false instead.

Comment thread .buildkite/gpu-tests/gpu-tests-H100.yml Outdated
- label: ":mag: Detect changes for Transformers Tests"
# Transformers tests - always run on branch pushes
- label: ":mag: Transformers Tests (branch)"
if: build.pull_request == null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using build.pull_request == null will evaluate to false on branch builds, causing this step to be skipped. Please use build.pull_request == false instead.

    if: build.pull_request == false

Comment thread .buildkite/gpu-tests/gpu-tests-H100.yml Outdated

# Transformers tests - conditional on PRs when relevant paths changed
- label: ":mag: Transformers Tests (PR)"
if: build.pull_request != null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Since build.pull_request is false on branch builds, build.pull_request != null will evaluate to true on branch builds, causing this PR-specific step to run on branch pushes. Please use build.pull_request != false instead.

    if: build.pull_request != false

Comment thread .buildkite/gpu-tests/gpu-tests-L4.yml Outdated
- label: ":mag: Detect changes for Transformers Tests"
# Transformers tests - always run on branch pushes
- label: ":mag: Transformers Tests (branch)"
if: build.pull_request == null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

In Buildkite, build.pull_request evaluates to false (boolean) when the build is not a pull request, rather than null. Using build.pull_request == null will evaluate to false on branch builds, causing this step to be skipped. Please use build.pull_request == false instead.

    if: build.pull_request == false

Comment thread .buildkite/gpu-tests/gpu-tests-L4.yml Outdated

# Transformers tests - conditional on PRs when relevant paths changed
- label: ":mag: Transformers Tests (PR)"
if: build.pull_request != null

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Since build.pull_request is false on branch builds, build.pull_request != null will evaluate to true on branch builds, causing this PR-specific step to run on branch pushes. Please use build.pull_request != false instead.

    if: build.pull_request != false

@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown

👋 Hi! Thank you for contributing to llm-compressor. Please add the ready label when the PR is ready for review.

Note: This is required to complete the testing suite, please only add the label once the PR is code complete and local testing has been performed.

@rashmigottipati
rashmigottipati force-pushed the test-no-trigger-e2e-change branch from e384ca3 to 7ec4e8d Compare August 14, 2026 03:08
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
… regex operator

Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
@rashmigottipati
rashmigottipati force-pushed the test-no-trigger-e2e-change branch from 7ec4e8d to bcbccb3 Compare August 14, 2026 03:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

two-reviews When a PR requires two reviews

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant