Skip to content

Commit

Permalink
Add Aqua to tests (#54)
Browse files Browse the repository at this point in the history
* add Aqua to tests

* remove unused export
  • Loading branch information
palday authored Apr 11, 2023
1 parent 0a1c80e commit fbbdd0a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Effects"
uuid = "8f03c58b-bd97-4933-a826-f71b64d2cca2"
authors = ["Beacon Biosignals, Inc."]
version = "1.0.0"
version = "1.0.1"

[deps]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
Expand All @@ -15,6 +15,7 @@ StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
Aqua = "0.5, 0.6"
Combinatorics = "1"
DataFrames = "0.22, 1.0, 1.1"
DataStructures = "0.18"
Expand All @@ -32,6 +33,7 @@ Vcov = "0.7"
julia = "1.6"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
GLM = "38e38edf-8417-5370-95a0-9cbb8c7f171a"
Expand All @@ -47,4 +49,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Vcov = "ec2bfdc2-55df-4fc9-b9ae-4958c2cf2486"

[targets]
test = ["DataFrames", "DataStructures", "GLM", "MixedModels", "MultipleTesting", "RDatasets", "StableRNGs", "StatsBase", "StatsModels", "StandardizedPredictors", "Test", "Vcov"]
test = ["Aqua", "DataFrames", "DataStructures", "GLM", "MixedModels", "MultipleTesting", "RDatasets", "StableRNGs", "StatsBase", "StatsModels", "StandardizedPredictors", "Test", "Vcov"]
2 changes: 1 addition & 1 deletion src/Effects.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ include("regressionmodel.jl")
export effects, effects!, expand_grid

include("emmeans.jl")
export emmeans, empairs, infinite_dof
export emmeans, empairs

end # module
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
using Aqua
using Effects
using Test

@testset "Aqua" begin
Aqua.test_all(Effects; ambiguities=false)
end

@testset "TypicalTerm" begin
include("typical.jl")
end
Expand Down

2 comments on commit fbbdd0a

@palday
Copy link
Member Author

@palday palday commented on fbbdd0a Apr 11, 2023

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/81444

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 v1.0.1 -m "<description of version>" fbbdd0a661be07e0fcd72b0f2a7c7ee3b1390f87
git push origin v1.0.1

Please sign in to comment.