-
Notifications
You must be signed in to change notification settings - Fork 1
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
SS-1241 Include git-lfs in our standard jupyterlab image #75
SS-1241 Include git-lfs in our standard jupyterlab image #75
Conversation
serve-jupyterlab/tests/test_api.py
Outdated
assert lfs_init_val == "Git LFS initialized.", lfs_init_val | ||
lfs_ver_val = cell_outputs[2] | ||
assert type(lfs_ver_val) == str | ||
assert lfs_ver_val == "git-lfs/3.0.2 (GitHub; linux amd64; go 1.18.1)", lfs_ver_val |
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.
Considering, that we are installing latest
, it would be good to mention this for posterity, that it's okay that it fails and version here should be increased.
Or use fixed version in installation.
Or not check this so precise and just match, that there is git-lfs in the string.
Up to you:)
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.
Thank you. I initially actually thought to go for partial matching (your option number three), then I thought it's better to have a detailed error description for reference and clarity, incase there is a version related issue. I will add a comment here (your point number one), to make it clear.
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 think it should go at least into the error message, like "if the error is about different version, up the version". Otherwise it will be a process to figure it all out in the future.
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 a lot.
Co-authored-by: Nikita Churikov <8545082+churnikov@users.noreply.github.com>
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.
We'll see in the future how it'll go, but let's keep it like this for now
Include git-lfs in our standard jupyterlab image
Source: SS-1241