-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Clean standalone run running under with context to automatically shutdown #833
Conversation
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.
minor comment
for sheet_name in sheet_data.keys(): | ||
assert all(actual == expected for actual, expected in zip(excel_dn_data[sheet_name], sheet_data[sheet_name])) | ||
|
||
# def test_write_with_header_multiple_sheet_custom_exposed_type_with_sheet_name(tmp_excel_file): |
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.
why are these tests commented out?
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.
I commented them cause they are failing. This is to investigate the issue since I am not able to reproduce it locally. I am using the test test_fail
that is a minimal reproduction of the issue.
excel_dn.write(None) | ||
assert excel_dn.read() == [] | ||
|
||
# def test_write_with_header_single_sheet_custom_exposed_type_with_sheet_name(tmp_excel_file_2): |
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.
?
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.
Same answer as before
@toan-quach @trgiangdo @joaoandre-avaiga @gmarabout |
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.
LGTM
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.
lgtm
Resolves #763
Code cleaning to try facilitating flaky test investigation