-
Notifications
You must be signed in to change notification settings - Fork 884
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
Fill default values when parent is missing #1312
Conversation
…efault_value_when_par_missing
Codecov Report
@@ Coverage Diff @@
## main #1312 +/- ##
==========================================
+ Coverage 98.38% 98.51% +0.12%
==========================================
Files 135 135
Lines 14496 14485 -11
==========================================
+ Hits 14262 14270 +8
+ Misses 234 215 -19
Continue to review full report at Codecov.
|
featuretools/tests/conftest.py
Outdated
@@ -152,6 +152,64 @@ def ks_diamond_es(pd_diamond_es): | |||
return ft.EntitySet(id=pd_diamond_es.id, entities=entities, relationships=relationships) | |||
|
|||
|
|||
@pytest.fixture(params=['pd_transactions_defaultvalue_es', 'dask_transactions_defaultvalue_es', 'ks_transactions_defaultvalue_es']) | |||
def transactions_defaultvalue_es(request): |
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.
thoughts on shortening this to default_value_es
and adjusting the other fixtures to match?
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.
Yeah, that would be cleaner for sure.
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.
@rwedge Updated
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.
Looks good!
Fill default values when parent is missing
Replaces PR #1217
Closes #682