-
-
Notifications
You must be signed in to change notification settings - Fork 18
fix: specify version of pytest #88
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: specify version of pytest #88
Conversation
Oh my. It would appear that the GitBots are out to get us today. 😉 I must have done something pretty horrible, because they just do not want to cooperate. 😆 Ok. Let me see why the golden tests are failing... |
I hope we don't get any worse...😅 2 months ago, the test CI passed with
This time the test failed with
|
@noritakaIzumi -- this may be more than what you want to do right now. So it is fine to say no. 😄 But the reason this change is failing is due to the "golden tests" that this repo runs. The tests under Usually, the mis-match is due to a code change within the runner itself that changes the So .. like now ... it can be a royal pain, since you didn't even touch the runner code -- only the requirements. 🙄 BUUUUT .. it does look like the damn container happily upgraded itself to So the way we "fix" this is to manually regenerate new Yeah. The upgrade bugs are really swarming today, aren't they?? |
Nope. I'm wrong. It has to be the |
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 for bearing with me. 😄 🌟 And for making this change!
Thank you for fixing test runner😄👏 |
LOL. Yes. Upgrading is going to be a fun project. 😁 But we do want to upgrade to PyTest 7.0 (and probably subtest 0.6.0) soon. It looks like the upgrade is going to need:
I'll write up a few issues. LMK if you're interested in working on any of the tasks. 😄 |
The module Pytest recently released new version 7.0.0 and changed dependencies.
So we temporarily keep version compatible with 6.
Related to: exercism/python#2892