Skip to content

Commit

Permalink
Fix code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed Oct 27, 2023
1 parent bde5c92 commit 1e9a4e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ end

@test rand(d1) isa Vector{Float64}
@test rand(d1, 10) isa Matrix{Float64}
@test rand(d1, 5, 5) isa Matrix{Vector{Float64}}

x = [22.70307499779583, 22.681635852743682, 22.63876085494785, 22.61732500220417, 22.638764147256317, 22.68163914505215, 22.70307499779583]
y = [0.4089925091091875, 0.40901969166358015, 0.4086701825543926, 0.40829349089081246, 0.4082663083364198, 0.4086158174456074, 0.4089925091091875]
Expand Down Expand Up @@ -95,6 +96,7 @@ end
@test stacey_kramers(0) == (18.7, 15.628)
@test stacey_kramers(3700) == (11.152, 12.998)
@test stacey_kramers(4567) == (9.314476625036953, 12.984667029161916)
@test stacey_kramers(5000) === (NaN, NaN)

end
@testset "Other systems" begin
Expand Down

2 comments on commit 1e9a4e0

@brenhinkeller
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • Breaking release: no longer export val and err
  • Avoid potential bug with both LV and VectorizedStatistics exporting vsum
  • Coverage improvments

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/94246

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" 1e9a4e05705dbd5999758181e2df267c3018a909
git push origin v0.3.0

Please sign in to comment.