-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new e2e-monitoring test to library-go #57664
Add new e2e-monitoring test to library-go #57664
Conversation
Signed-off-by: Damien Grisonnet <[email protected]>
Signed-off-by: Damien Grisonnet <[email protected]>
[REHEARSALNOTIFIER]
Prior to this PR being merged, you will need to either run and acknowledge or opt to skip these rehearsals. Interacting with pj-rehearseComment: Once you are satisfied with the results of the rehearsals, comment: |
/pj-rehearse ack |
@dgrisonnet: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
/pj-rehearse ack |
@rexagod: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
make sure this runs prior to merge. Feel free to release after. /approve |
/pj-rehearse pull-ci-openshift-library-go-master-e2e-monitoring |
@dgrisonnet: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, dgrisonnet, p0lyn0mial The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/hold cancel |
/hold
|
This is the expected result, it ran but we just added a placeholder Makefile rule (openshift/library-go#1829) |
ACK, apologies for blocking the original PR, and PLMK if I'm missing something here, but shouldn't the integration tests actually run on PRs and actively block them if they fail? This is in line with the fact that vetting cc @p0lyn0mial |
Yes but we don't really need to run them if the code path hasn't been touched.
If the reason was logical it would be flagged by the integration test since the code path would be touched. But here it is just a compilation error that can easily be caught once we try to update the dependency in one of the consumer, we don't really need to run the integration suite for that? |
The placeholder step is just here because pj-rehearse doesn't support targeting a specific PR. We have to first merge the PR here with a test that is never failing and then update the rule in the library-go PR to test the code and verify that the new integration test works. |
/unhold |
b3e29d3
into
openshift:master
* config/library-go: add monitoring-e2e test Signed-off-by: Damien Grisonnet <[email protected]> * jobs: regenerate Signed-off-by: Damien Grisonnet <[email protected]> --------- Signed-off-by: Damien Grisonnet <[email protected]>
Ah, I see, the integration tests have been split up into separate targets so they can be run lazily based on the related codepath changes. However, it seems the |
New test added in openshift/library-go#1823