-
Notifications
You must be signed in to change notification settings - Fork 117
[bugfix] Fix JSON report generation for deferred expressions #1489
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
* Add a custom 'json' utility package which uses the `__rfm_json_encode__` method for json encoding if defined. * Implement the above method for `_Deferred_Expression` objects. * Add unittests for the custom `json` utility package.
Codecov Report
@@ Coverage Diff @@
## master #1489 +/- ##
==========================================
+ Coverage 91.71% 91.72% +0.01%
==========================================
Files 82 83 +1
Lines 12928 12959 +31
==========================================
+ Hits 11857 11887 +30
- Misses 1071 1072 +1
Continue to review full report at Codecov.
|
json utility package for object dumping
vkarak
left a comment
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
Add a custom 'json' utility package which uses the
__rfm_json_encode__method for json encoding if defined.Implement the above method for
_Deferred_Expressionobjects.Add unittests for the custom
jsonutility package.Fixes #1459