-
Notifications
You must be signed in to change notification settings - Fork 386
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
fix: pip cache failures in workflows #293
Conversation
This is most likely caused by This can be fixed by specifying cache-dependency-path I'm not sure if this wouldn't exclude
so using this should be safe:
|
I would think this if it weren't for the fact that packages in |
So this means the error happens during download, which means the problem isnt in the cached files. I tried to search for the error message, and it seems In that case not using cache wont help, it might make the problem worse as we'll be downloading each dependency every time, increasing the chance for the mismatch. Is there any occurrence of this problem for the Other than that I found that
|
Going back to the drawing board for this. |
this was most likely fixed within #332 by using TagStudio/.github/workflows/pytest.yaml Lines 39 to 43 in fb949b8
|
From #255:
Unfortunately the fix in 82037e5 seems to have just caused registered bad cache to be reused over and over. So, this serves as a sort of "opposite" to that and removes using the cache altogether.
Again, due to random nature, this cannot easily be tested and will show results over time.