-
-
Notifications
You must be signed in to change notification settings - Fork 614
Fix ODS export of boolean values crashing on re-import #656
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
Merged
+16
−1
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
aea4bd7
Fix ODS export of boolean values crashing on re-import
vineethsaivs bb9326c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] e53e83e
Test ODS boolean round-trip with assertIs to verify real booleans
vineethsaivs 738bdf7
Wrap boolean ODS cell construction to satisfy line-length lint
vineethsaivs f493f31
Assert booleans directly now that teyit is removed
vineethsaivs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 do not agree with this precommit change, we clearly want to test
False/Truehere, and not the truethy/falsy values. @hugovk, do you know if we can by-pass the automatic change in this particular case?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.
This is from teyit, it doesn't have
# noqaway to disable per line.Some options:
Flip the order:
self.assertIs(True, data.dict[0]['flag'])Rewrite as two checks:
assertIsInstance(flag, bool)andassertTrue(flag)It only matches AST constants, use variables:
.pre-commit-config.yaml(which has the bulk of the tests)Somewhat related, I use pytest in most other projects. What do you think about using it here, or do you prefer unittest? I'd prefer pytest, but also fine with unittest too.
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'm not a fan of automated checks, so I wouldn't be opposed to simply disable teyit entirely.
As far as testing is concerned, I've never been convicted about the real added value of pytest. For me it's more a matter of preferences, so when I can stick to the standard lib, I do. But I don't consider this as my project, so feel free to change that if you have the time for.