We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6fdc91 commit 5426ecaCopy full SHA for 5426eca
test/runtests.jl
@@ -1,10 +1,14 @@
1
include("test_utils/SelectiveTests.jl")
2
using .SelectiveTests: isincluded, parse_args
3
using Pkg
4
+using Random: seed!
5
using Test
6
using TimerOutputs: TimerOutputs, @timeit
7
import Turing
8
9
+# Fix the global Random.seed for reproducibility.
10
+seed!(23)
11
+
12
include(pkgdir(Turing) * "/test/test_utils/models.jl")
13
include(pkgdir(Turing) * "/test/test_utils/numerical_tests.jl")
14
include(pkgdir(Turing) * "/test/test_utils/ad_utils.jl")
0 commit comments