-
Notifications
You must be signed in to change notification settings - Fork 13
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
BUG: Fix bug with logger call #39
Conversation
I will merge and release this fix along with a fix to #38 I'm worried I used |
@sstucker assuming your test coverage is good enough you could smoke out logging issues by using |
... if you want I'm happy to make that transition. And I can also fix the unit testing that appears to be broken |
Something changed on GitHub's end that broke the testing. I've fixed it I think, try and rerun your check. I would welcome the switch if you're convinced it's a good idea. I didn't have much experience with Python testing or logging when I built what you see here. |
* upstream/main: Update test.yml to use Python 3.8.17
Done @sstucker , ended up needing to make a bunch of little changes/fixes here and there, feel free to look at the |
This looks good! Do MNE folks need this released ASAP? |
No, I hacked in a |
Not sure how to add a test since it seems to only come up when using
pytest
and you use bareunittest
, but when adding some code to MNE-Python I got:This fixes the error with the
*args
being passed tologger.info
by constructing the entire string.