-
Notifications
You must be signed in to change notification settings - Fork 331
Using pytest cache instead of ov cache env variable #2744
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
base: master
Are you sure you want to change the base?
Using pytest cache instead of ov cache env variable #2744
Conversation
ccfc236 to
afef4af
Compare
.github/workflows/linux.yml
Outdated
| timeout: 360 | ||
| - name: 'LLM & VLM' | ||
| cmd: 'tests/python_tests/test_llm_pipeline.py tests/python_tests/test_llm_pipeline_static.py tests/python_tests/test_vlm_pipeline.py tests/python_tests/test_structured_output.py --override-ini cache_dir=/mount/caches/pytest/' | ||
| cmd: 'tests/python_tests/test_llm_pipeline.py tests/python_tests/test_llm_pipeline_static.py tests/python_tests/test_vlm_pipeline.py tests/python_tests/test_structured_output.py -o cache_dir=/mount/caches/pytest/lin' |
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.
-o is an alias for --override-ini. --override-ini is more verbose. Why replace with -o?
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.
It's for consistency - all other commands use -o
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.
I can't fine any. Can you like a specific place?
439b164 to
1f986d5
Compare
9f0e566 to
0539dec
Compare
70ce5a8 to
271bcbc
Compare
271bcbc to
d884783
Compare
c26d96b to
2114307
Compare
2bcf37e to
1519986
Compare
Part of CVS-173285
Adds support for pytest cache plugin, also some fixture refactorings in order to support it better