Skip to content

Commit 9daf938

Browse files
committed
create a project enviroment for testing
1 parent 83ce8b5 commit 9daf938

3 files changed

Lines changed: 15 additions & 8 deletions

File tree

Project.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ KernelDensity = "0.6.5"
3737
LinearAlgebra = "1"
3838
Plots = "1.0.0"
3939
PrettyTables = "2.0"
40-
QuadGK = "2"
4140
Random = "1"
42-
SafeTestsets = "v0.0.1,0.1.0"
4341
SpecialFunctions = "1,2"
4442
Statistics = "1"
4543
StatsAPI = "1.0.0"
@@ -48,14 +46,10 @@ Turing = "0.35.0,0.36.0,0.37,0.38.0,0.39.0"
4846
julia = "1"
4947

5048
[extras]
51-
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
52-
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
53-
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
54-
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
5549
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
5650
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
5751
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
5852
Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"
5953

6054
[targets]
61-
test = ["Interpolations", "KernelDensity", "Plots", "QuadGK", "SafeTestsets", "StatsBase", "Statistics", "Test", "Turing"]
55+
test = ["Test"]

test/Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[deps]
2+
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
3+
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
4+
KernelDensity = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
5+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
6+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
7+
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
8+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
9+
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
10+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
11+
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
12+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
13+
Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using SafeTestsets
22

3-
files = filter(f -> f "runtests.jl", readdir())
3+
files = filter(f -> occursin(".jl", f) && f "runtests.jl", readdir())
44

55
include.(files)

0 commit comments

Comments
 (0)