-
Notifications
You must be signed in to change notification settings - Fork 670
chore: add logging to tests/functional/conftest.py
#1786
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
Conversation
4b81338
to
6fb2e0a
Compare
93967ee
to
2dd8fdb
Compare
87b6150
to
5ab8b3f
Compare
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.
Thanks @JohnVillalovos! Just a few comments for discussion from me.
I have found trying to debug issues in the functional tests can be difficult. Especially when trying to figure out failures in the CI running on Github.
Add logging to
tests/functional/conftest.py
to have a better understanding of what is happening during a test run which is useful when trying to troubleshoot issues in the CI.
Just a note here, I prefer debugging locally as otherwise watchers can get spammed with notifications on many pushes. But I understand sometimes it's CI-only issues and then it's hard to debug so this makes sense.
5ab8b3f
to
3bcf278
Compare
I personally have found this quite useful for local debugging too. I like having a progress indication for one. Even though it doesn't give me an ETA at least I know it is doing something. |
089e84a
to
aa1e458
Compare
I have found trying to debug issues in the functional tests can be difficult. Especially when trying to figure out failures in the CI running on Github. Add logging to `tests/functional/conftest.py` to have a better understanding of what is happening during a test run which is useful when trying to troubleshoot issues in the CI.
aa1e458
to
a1ac9ae
Compare
I have found trying to debug issues in the functional tests can be
difficult. Especially when trying to figure out failures in the CI
running on Github.
Add logging to
tests/functional/conftest.py
to have a betterunderstanding of what is happening during a test run which is useful
when trying to troubleshoot issues in the CI.