-
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
Update feature views with commit hash included #75
Update feature views with commit hash included #75
Conversation
colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and sys_platform == "win32" | ||
h11==0.14.0 ; python_version >= "3.8" and python_version < "4.0" | ||
httpcore==0.16.1 ; python_version >= "3.8" and python_version < "4.0" | ||
httpcore==0.16.2 ; python_version >= "3.8" and python_version < "4.0" | ||
httpx==0.23.1 ; python_version >= "3.8" and python_version < "4.0" |
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.
poetry.lock
and requirements.txt
is changed after I ran make install
, I think that should be okay? @ddl-gabrielhaim
112c497
to
f5257b0
Compare
f5257b0
to
4c72771
Compare
✅ Result of Pytest Coverage---------- coverage: platform linux, python 3.10.8-final-0 -----------
~ 54 passed in 23.13s ~ |
Repo.__new__ = MagicMock() | ||
Repo.__new__.return_value = repo_mock |
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.
Nit: this two lines can be combined together: Repo.__new__ = MagicMock(return_value=repo_mock)
BTW, the safety check failed. Might need to bump up some libraries' version. |
It was closed by mistake. Reopen it. |
Description
Upsert feature views has a commit hash that needs to be passed to the API
Related Issue
https://dominodatalab.atlassian.net/browse/DOM-42358
Type of Change