Skip to content
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

Merged
merged 12 commits into from
Nov 5, 2022

Conversation

codetalker7
Copy link
Member

As suggested in #66, this PR changes the package name to TimeFrames and the struct name to TimeFrame.

Benchmark.md Outdated Show resolved Hide resolved
@codecov-commenter
Copy link

codecov-commenter commented Nov 1, 2022

Codecov Report

Merging #111 (600bae3) into main (0d0ad78) will decrease coverage by 0.48%.
The diff coverage is 89.94%.

@@            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     
Impacted Files Coverage Δ
src/plot.jl 0.00% <0.00%> (ø)
src/utils.jl 81.08% <80.00%> (ø)
src/TimeFrame.jl 95.00% <88.23%> (ø)
src/tables.jl 90.00% <90.00%> (ø)
src/join.jl 87.50% <90.90%> (ø)
src/getindex.jl 91.15% <96.96%> (ø)
src/TimeFrames.jl 100.00% <100.00%> (ø)
src/apply.jl 90.47% <100.00%> (ø)
src/broadcasting.jl 100.00% <100.00%> (ø)
src/diff.jl 83.33% <100.00%> (ø)
... and 10 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

@ayushpatnaikgit
Copy link
Member

I think it's good to merge

@chiraganand
Copy link
Member

==========================================
- Coverage   89.40%   88.91%   -0.49%     
==========================================
  Files          19       19              
  Lines         368      370       +2     
==========================================
  Hits          329      329              
- Misses         39       41       +2     

How come the coverage is getting reduced after renaming? There are two lines which are getting missed.

@codetalker7
Copy link
Member Author

==========================================
- Coverage   89.40%   88.91%   -0.49%     
==========================================
  Files          19       19              
  Lines         368      370       +2     
==========================================
  Hits          329      329              
- Misses         39       41       +2     

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?

@codetalker7
Copy link
Member Author

We can try running the Codecov job again to verify if this is indeed the case.

@chiraganand chiraganand linked an issue Nov 5, 2022 that may be closed by this pull request
@@ -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
Copy link
Member

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.

@chiraganand
Copy link
Member

==========================================
- Coverage   89.40%   88.91%   -0.49%     
==========================================
  Files          19       19              
  Lines         368      370       +2     
==========================================
  Hits          329      329              
- Misses         39       41       +2     

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?

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.

@chiraganand
Copy link
Member

==========================================
- Coverage   89.40%   88.91%   -0.49%     
==========================================
  Files          19       19              
  Lines         368      370       +2     
==========================================
  Hits          329      329              
- Misses         39       41       +2     

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?

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Package name
4 participants