From 70b4c847bfa7b453351232df3cd39f6b0c609f9b Mon Sep 17 00:00:00 2001 From: soldasim Date: Mon, 4 Nov 2024 18:50:03 +0100 Subject: [PATCH] up dep versions; change '\' to '/' in test paths --- Project.toml | 20 ++++++++++---------- test/unit/runtests.jl | 8 ++++---- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Project.toml b/Project.toml index 67b008d..b69b38d 100644 --- a/Project.toml +++ b/Project.toml @@ -15,13 +15,13 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0" [compat] -AbstractGPs = "^0.5.21" -Distributed = "^1.10" -Distributions = "^0.25.109" -InteractiveUtils = "^1.10" -LatinHypercubeSampling = "^1.9" -LinearAlgebra = "^1.10" -Optimization = "^3.27" -Random = "^1.10" -Turing = "^0.33.1, ^0.34" -julia = "^1.10" +AbstractGPs = "0.5.21" +Distributed = "1.10" +Distributions = "0.25.109" +InteractiveUtils = "1.10" +LatinHypercubeSampling = "1.9" +LinearAlgebra = "1.10" +Optimization = "3.27, 4" +Random = "1.10" +Turing = "0.33.1, 0.34, 0.35" +julia = "1.10" diff --git a/test/unit/runtests.jl b/test/unit/runtests.jl index d0cadaa..c16fd64 100644 --- a/test/unit/runtests.jl +++ b/test/unit/runtests.jl @@ -4,13 +4,13 @@ include("_parametrized_tests.jl") # TODO function include_unit_tests(dir) for file in readdir(dir) if endswith(file, ".jl") - @info " Testing $dir\\$file" + @info " Testing $dir/$file" @testset "$file" begin - include(dir*'\\'*file) + include(dir*'/'*file) end else @testset "$file" begin - include_unit_tests(dir*'\\'*file) + include_unit_tests(dir*'/'*file) end end end @@ -18,5 +18,5 @@ end @testset "Unit Tests" begin @info "Running Unit Tests ..." - include_unit_tests(Base.source_dir() * "\\test") + include_unit_tests(Base.source_dir() * '/' * "test") end