-
Notifications
You must be signed in to change notification settings - Fork 14k
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
refactor: reduce test data size #10487
refactor: reduce test data size #10487
Conversation
e43664a
to
8fe0200
Compare
Codecov Report
@@ Coverage Diff @@
## master #10487 +/- ##
===========================================
- Coverage 70.84% 59.94% -10.91%
===========================================
Files 605 409 -196
Lines 32428 13355 -19073
Branches 3423 3423
===========================================
- Hits 22975 8006 -14969
+ Misses 9341 5161 -4180
- Partials 112 188 +76
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
8fe0200
to
80372f9
Compare
80372f9
to
4fa4c5c
Compare
4fa4c5c
to
9b15c4e
Compare
@@ -264,13 +264,30 @@ def cannonicalize_df(df): | |||
return ret | |||
|
|||
df1 = self.query_with_expr_helper(is_timeseries=True, inner_join=True) | |||
name_list1 = cannonicalize_df(df1).name.values.tolist() |
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.
made the test deterministic
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!
Co-authored-by: bogdan kyryliuk <[email protected]>
Co-authored-by: bogdan kyryliuk <[email protected]>
Doing some test setup cleanup. This PR is needed to be able to add presto to the CI bkyryliuk#13, presto inserts are fairly slow and takes forever to finish.
The ultimate state is to move off the load examples & leverage the fixtures instead. This step is more intermediate and just reduces the data size loaded into the test databases.