Skip to content

Commit 738879d

Browse files
committed
DEBUG
1 parent c4179c0 commit 738879d

File tree

1 file changed

+25
-23
lines changed

1 file changed

+25
-23
lines changed

test/runtests.jl

Lines changed: 25 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,34 @@ using Test
44

55
@info "Running tests with $(Base.Threads.nthreads()) Julia threads active."
66

7-
import Pkg
8-
if "PyCall" in keys(Pkg.project().dependencies)
9-
import PyCall
10-
@info "Python configuration:" get(ENV, "PYTHON", "not set") PyCall.PYTHONHOME PyCall.python PyCall.conda
11-
end
7+
#import Pkg
8+
#if "PyCall" in keys(Pkg.project().dependencies)
9+
# import PyCall
10+
# @info "Python configuration:" get(ENV, "PYTHON", "not set") PyCall.PYTHONHOME PyCall.python PyCall.conda
11+
#end
1212

13-
import Logging
14-
import TerminalLoggers
15-
Logging.global_logger(TerminalLoggers.TerminalLogger(stderr, Logging.Error))
13+
#import Logging
14+
#import TerminalLoggers
15+
#Logging.global_logger(TerminalLoggers.TerminalLogger(stderr, Logging.Error))
16+
#
17+
#import AbstractMCMC
18+
#AbstractMCMC.setprogress!(false)
1619

17-
import AbstractMCMC
18-
AbstractMCMC.setprogress!(false)
20+
ENV["JULIA_DEBUG"] = "Aqua"
1921

2022
Test.@testset "Package BAT" begin
2123
include("test_aqua.jl")
22-
include("utils/test_utils.jl")
23-
include("rngs/test_rngs.jl")
24-
include("distributions/test_distributions.jl")
25-
include("variates/test_variates.jl")
26-
include("transforms/test_transforms.jl")
27-
include("densities/test_densities.jl")
28-
include("initvals/test_initvals.jl")
29-
include("statistics/test_statistics.jl")
30-
include("optimization/test_optimization.jl")
31-
include("samplers/test_samplers.jl")
32-
include("io/test_io.jl")
33-
include("plotting/test_plotting.jl")
34-
include("integration/test_integration.jl")
24+
#include("utils/test_utils.jl")
25+
#include("rngs/test_rngs.jl")
26+
#include("distributions/test_distributions.jl")
27+
#include("variates/test_variates.jl")
28+
#include("transforms/test_transforms.jl")
29+
#include("densities/test_densities.jl")
30+
#include("initvals/test_initvals.jl")
31+
#include("statistics/test_statistics.jl")
32+
#include("optimization/test_optimization.jl")
33+
#include("samplers/test_samplers.jl")
34+
#include("io/test_io.jl")
35+
#include("plotting/test_plotting.jl")
36+
#include("integration/test_integration.jl")
3537
end

0 commit comments

Comments
 (0)