Skip to content

Commit

Permalink
use TestSetExtensions to show test progress (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
palday committed Mar 6, 2024
1 parent 4ba6f40 commit a8aeed4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ StatsBase = "0.33, 0.34"
StatsModels = "0.6.23, 0.7"
Tables = "1"
Test = "1"
TestSetExtensions = "3"
Vcov = "0.7"
julia = "1.6"

Expand All @@ -60,7 +61,8 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestSetExtensions = "98d24dd4-01ad-11ea-1b02-c9a08f80db04"
Vcov = "ec2bfdc2-55df-4fc9-b9ae-4958c2cf2486"

[targets]
test = ["Aqua", "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", "TestSetExtensions", "Vcov"]
31 changes: 17 additions & 14 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
using Aqua
using Effects
using Test
using TestSetExtensions

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

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

@testset "linear regression" begin
include("linear_regression.jl")
end
@testset "linear regression" begin
include("linear_regression.jl")
end

@testset "delta method" begin
include("delta_method.jl")
end
@testset "delta method" begin
include("delta_method.jl")
end

@testset "emmeans" begin
include("emmeans.jl")
@testset "emmeans" begin
include("emmeans.jl")
end
end

0 comments on commit a8aeed4

Please sign in to comment.