-
Notifications
You must be signed in to change notification settings - Fork 117
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 a full OV testing GHA workflow for nightly #985
Add a full OV testing GHA workflow for nightly #985
Conversation
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
380c4fd
to
e79768b
Compare
Update workflow name Trigger Tests Fix workflow file Fix Introduce more readable job names Revert basic test changes
e79768b
to
9c05797
Compare
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.
accuracy issues for runs with openvino nightly not related to this PR. Will be addressed in separated PR
- name: Install lowest compatible transformers version | ||
if: ${{ matrix.transformers-version != 'latest' }} | ||
run: pip install transformers==${{ matrix.transformers-version }} |
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.
installing transformers before pip install .[tests]
might result in the later overriding the intended version
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.
Thanks! Fixed
What does this PR do?
Changes:
Reason for changes:
During slow testing almost none quantization tests are run which is critical for assessing NNCF version impact. That is why all OV tests need to be run on a nightly basis.
Instead of expanding the current slow test workflow to do full testing, a new workflow is added for that. This is to conserve computational resources, as different OS and transformers version is not strictly required to assess OV nightly / NNCF develop impact.
Before submitting