-
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
[ODH] Split up the notebook-e2e-tests to seperated and grouped e2e-tests #51557
Conversation
… enchance the testing time and avoid of using a lot of resources
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: atheo89 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 |
[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 |
@atheo89: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
@atheo89: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super neat work.
as we are spliting the bits based on the type.
shall we extract anaconda e2e separate ?
WDYT?
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/pj-rehearse pull-ci-opendatahub-io-notebooks-main-notebooks-ubi9-e2e-tests |
@atheo89: now processing your pj-rehearse request. Please allow up to 10 minutes for jobs to trigger or cancel. |
@atheo89,
|
Issues in openshift/release go stale after 30d of inactivity. Mark the issue as fresh by commenting If this issue is safe to close now please do so with /lifecycle stale |
Thanks, you are right would be better to seperate the anacoda test as well, I have conside the change on the new PR that create to eliminate the mess around! The rest remain the same. New PR here: #53010 |
This PR aims to improve testing efficiency and reduce testing time.
To archive that we had to change a bit the ocp-ci configuration.
Currently, all notebook tests are grouped under a single test suite called "notebooks-e2e-tests". However, this approach has several drawbacks:
To address these issues, we propose breaking down the unified test suite into separate tests, triggered only when relevant changes occur using the run_if_changed: (regex) option, this way will reduce the time and will spot easier problematic notebooks.
So the notebooks-e2e-tests broke into the following:
- notebooks-ubi8-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi8-python-3.8\/*)|(jupyter\/minimal\/ubi8-python-3.8\/*)|(jupyter\/datascience\/ubi8-python-3.8\/*)|(jupyter\/pytorch\/ubi8-python-3.8\/*)|(jupyter\/tensorflow\/ubi8-python-3.8\/*)|(jupyter\/trustyai\/ubi8-python-3.8\/*)
- notebooks-ubi9-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi9-python-3.9\/*)|(jupyter\/minimal\/ubi9-python-3.9\/*)|(jupyter\/datascience\/ubi9-python-3.9\/*)|(jupyter\/pytorch\/ubi9-python-3.9\/*)|(jupyter\/tensorflow\/ubi9-python-3.9\/*)|(jupyter\/trustyai\/ubi9-python-3.9\/*)
- codeserver-notebook-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi9-python-3.9\/*)|(codeserver\/ubi9-python-3.9\/*)
- rstudio-notebook-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/c9s-python-3.9\/*)|(rstudio\/c9s-python-3.9\/*)
- runtimes-ubi8-e2e-test
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi8-python-3.8\/*)|(runtimes\/datascience\/ubi8-python-3.8\/*)|(runtimes\/pytorch\/ubi8-python-3.8\/*)|(runtimes\/tensorlow\/ubi8-python-3.8\/*)
- runtimes-ubi9-e2e-test
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi9-python-3.9\/*)|(runtimes\/datascience\/ubi9-python-3.9\/*)|(runtimes\/pytorch\/ubi9-python-3.9\/*)|(runtimes\/tensorlow\/ubi9-python-3.9\/*)
- intel-runtimes-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi9-python-3.9\/*)|(intel\/base\/gpu\/ubi9-python-3.9\/*)|(intel\/runtimes\/tensorflow\/ubi9-python-3.9\/*)|(jupyter\/intel\/tensorflow\/ubi9-python-3.9\/*)||(intel\/runtimes\/pytorch\/ubi9-python-3.9\/*)|(jupyter\/intel\/pytorch\/ubi9-python-3.9\/*)|(intel\/runtimes\/ml\/ubi9-python-3.9\/*)|(jupyter\/intel\/ml\/ubi9-python-3.9\/*)
- intel-notebooks-e2e-tests
Triggered when changes occur in the following repository folders:
run_if_changed: (base\/ubi9-python-3.9\/*)|(intel\/base\/gpu\/ubi9-python-3.9\/*)|(intel\/runtimes\/tensorflow\/ubi9-python-3.9\/*)|(jupyter\/intel\/tensorflow\/ubi9-python-3.9\/*)||(intel\/runtimes\/pytorch\/ubi9-python-3.9\/*)|(jupyter\/intel\/pytorch\/ubi9-python-3.9\/*)|(intel\/runtimes\/ml\/ubi9-python-3.9\/*)|(jupyter\/intel\/ml\/ubi9-python-3.9\/*)
PS: The habana-notebooks-e2e-tests was already separated