-
Notifications
You must be signed in to change notification settings - Fork 84
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
review / refactor tests/constants.py #2536
Comments
Catch specific exceptions instead of general ValueError and BrokenPipeError. Consider git.exc.InvalidGitRepositoryError |
Can I work on this issue? |
Welcome @YashaswiniTB I assigned it to you. |
The SHA is being used as an identifier for the TempFS, presumably to create unique and consistent temporary filesystems during local development. def get_git_sha():
Use a unique identifier for the temporary filesystemunique_id = f"msui{get_git_sha()}" |
This looks to me currently a bit overengeenered. On github also each worker creates anyway a new tmp dir.
Is there any case on local development where we need a second information about the state of the git repository?
The text was updated successfully, but these errors were encountered: