Skip to content

Commit

Permalink
Update dependencies and run Aqua tests (#152)
Browse files Browse the repository at this point in the history
* Update dependencies and run Aqua tests

* Load Aqua
  • Loading branch information
devmotion authored Jul 5, 2023
1 parent 94e3ad2 commit 1715166
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 20 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CalibrationErrors"
uuid = "33913031-fe46-5864-950f-100836f47845"
authors = ["David Widmann <[email protected]>"]
version = "0.6.3"
version = "0.6.4"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand All @@ -27,7 +27,7 @@ KernelFunctions = "0.10"
PDMats = "0.10, 0.11"
Reexport = "0.2, 1.0"
SimpleUnPack = "1"
StatsBase = "0.32, 0.33"
StatsBase = "0.32, 0.33, 0.34"
Tulip = "0.7.5, 0.8, 0.9"
julia = "1.3"

Expand Down
29 changes: 11 additions & 18 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using CalibrationErrors
using Aqua
using Distances
using Distributions
using PDMats
Expand All @@ -14,22 +15,18 @@ using CalibrationErrors: unsafe_skce_eval, unsafe_ucme_eval
Random.seed!(1234)

@testset "CalibrationErrors" begin
@testset "General" begin
include("aqua.jl")
end

@testset "binning" begin
@testset "generic" begin
include("binning/generic.jl")
end
@testset "uniform" begin
include("binning/uniform.jl")
end
@testset "median variance" begin
include("binning/medianvariance.jl")
end
include("binning/generic.jl")
include("binning/uniform.jl")
include("binning/medianvariance.jl")
end

@testset "distances" begin
@testset "Wasserstein distance" begin
include("distances/wasserstein.jl")
end
include("distances/wasserstein.jl")
end

@testset "ECE" begin
Expand All @@ -45,11 +42,7 @@ Random.seed!(1234)
end

@testset "distributions" begin
@testset "Normal" begin
include("distributions/normal.jl")
end
@testset "MvNormal" begin
include("distributions/mvnormal.jl")
end
include("distributions/normal.jl")
include("distributions/mvnormal.jl")
end
end

2 comments on commit 1715166

@devmotion
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/86879

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.6.4 -m "<description of version>" 1715166a186c1327c8e29d6f1950c4d9f6859c3a
git push origin v0.6.4

Please sign in to comment.