Skip to content

Commit a0a6a69

Browse files
committed
Move test dependencies to test Project, remove unnecessary StatsBase dep
1 parent c5dc568 commit a0a6a69

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Project.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
1717
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1818
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1919
StatGeochemBase = "61e559cd-58b4-4257-8528-26bb26ff2b9a"
20-
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
21-
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
22-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2320
VectorizedStatistics = "3b853605-1c98-4422-8364-4bd93ee0529e"
2421

2522
[compat]
@@ -36,6 +33,5 @@ ProgressMeter = "1"
3633
Reexport = "0.2, 1.0"
3734
SpecialFunctions = "0.10, 1, 2"
3835
StatGeochemBase = "0.5"
39-
StatsBase = "0.28 - 0.34"
4036
VectorizedStatistics = "0.5"
4137
julia = "1"

test/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
3+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Chron
2-
using Test, Statistics, StatsBase
2+
using Test, Statistics
33

44
const make_plots = get(ENV, "MAKE_PLOTS", false) == "true"
55
@testset "Utilities" begin include("testUtilities.jl") end

0 commit comments

Comments
 (0)