Skip to content

Commit 8fe0fa4

Browse files
authored
use TestSetExtensions to show test progress (#307)
* use TestSetExtensions to show test progress also add in stdlib compat entries * patch bump
1 parent b827913 commit 8fe0fa4

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

Project.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "StatsModels"
22
uuid = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
3-
version = "0.7.3"
3+
version = "0.7.4"
44

55
[deps]
66
DataAPI = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a"
@@ -22,10 +22,13 @@ DataAPI = "1.1"
2222
DataFrames = "1"
2323
DataStructures = "0.17, 0.18"
2424
ShiftedArrays = "1, 2"
25+
Statistics = "1"
2526
StatsAPI = "1.7"
2627
StatsBase = "0.33.5, 0.34"
2728
StatsFuns = "0.9, 1.0"
2829
Tables = "0.2, 1"
30+
Test = "1"
31+
TestSetExtensions = "3"
2932
WeakRefStrings = "1"
3033
julia = "1.6"
3134

@@ -35,7 +38,8 @@ CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
3538
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
3639
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
3740
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
41+
TestSetExtensions = "98d24dd4-01ad-11ea-1b02-c9a08f80db04"
3842
WeakRefStrings = "ea10d353-3f73-51f8-a26c-33c1cb351aa5"
3943

4044
[targets]
41-
test = ["Aqua", "CategoricalArrays", "DataFrames", "Statistics", "Test", "WeakRefStrings"]
45+
test = ["Aqua", "CategoricalArrays", "DataFrames", "Statistics", "Test", "TestSetExtensions", "WeakRefStrings"]

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ using Test
22
using Aqua
33
using LinearAlgebra
44
using SparseArrays
5+
using TestSetExtensions
56

67
using StatsModels
78
using DataFrames
@@ -26,7 +27,7 @@ my_tests = ["ambiguity.jl",
2627
"protect.jl",
2728
"vif.jl"]
2829

29-
@testset "StatsModels" begin
30+
@testset ExtendedTestSet "StatsModels" begin
3031
@testset "aqua" begin
3132
# because VIF and GVIF are defined in StatsAPI for RegressionModel,
3233
# which is also defined there, it's flagged as piracy. But

0 commit comments

Comments
 (0)