-
Notifications
You must be signed in to change notification settings - Fork 24
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
Package name changed to TimeFrames
.
#111
Conversation
Codecov Report
@@ Coverage Diff @@
## main #111 +/- ##
==========================================
- Coverage 89.40% 88.91% -0.49%
==========================================
Files 19 19
Lines 368 370 +2
==========================================
Hits 329 329
- Misses 39 41 +2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
I think it's good to merge |
How come the coverage is getting reduced after renaming? There are two lines which are getting missed. |
Yeah this is a bit weird. Codecov is not showing which lines are missed either. Could it be because of some test which is uses randomization without a random seed? |
We can try running the Codecov job again to verify if this is indeed the case. |
@@ -58,8 +58,8 @@ julia> df = DataFrame(x1 = random(10)) | |||
9 │ 0.26864 | |||
10 │ 0.108871 | |||
|
|||
julia> ts = TS(df) # generates index | |||
(10 x 1) TS with Int64 Index | |||
julia> ts = TimeFrame(df) # generates index |
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.
We should also change ts
to tf
to go with the latest convention.
Usually, when Codecov doesn't show the diff then there is something wrong with the history of codecov CI runs. I saw there were two failed CI runs (macOS timing out) in the master a few commits behind, I have restarted them. Let us see if that fixes it. |
Re-run of the codecov job in this PR fixed the Codecov output but the full output doesn't show any file which has decreased in test coverage only the top level percentage is shown to be decreased by 0.48%. Don't know why this is happening but guess we can leave this investigation for later. |
As suggested in #66, this PR changes the package name to
TimeFrames
and the struct name toTimeFrame
.