Skip to content

Commit b02e728

Browse files
authored
Merge branch 'main' into copilot/allow-optional-parameters-in-functions
2 parents c93abb3 + fde056f commit b02e728

5 files changed

+5
-5
lines changed

test/test_1st_order_inversion_filter_estimation_pigeons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pt = @time Pigeons.pigeons(target = FS2000_lp,
7070
record = [Pigeons.traces; Pigeons.round_trip; Pigeons.record_default()],
7171
n_chains = 2,
7272
n_rounds = 10,
73-
multithreaded = true)
73+
multithreaded = false) # tests fail on multithreaded
7474

7575
samps = MCMCChains.Chains(pt)
7676

test/test_2nd_order_estimation_pigeons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pt = @time Pigeons.pigeons(target = FS2000_2nd_lp,
9393
record = [Pigeons.traces; Pigeons.round_trip; Pigeons.record_default()],
9494
n_chains = 1,
9595
n_rounds = 9,
96-
multithreaded = true)
96+
multithreaded = false) # tests fail on multithreaded
9797

9898
samps = MCMCChains.Chains(pt)
9999

test/test_3rd_order_estimation_pigeons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pt = @time Pigeons.pigeons(target = Caldara_lp,
110110
record = [Pigeons.traces; Pigeons.round_trip; Pigeons.record_default()],
111111
n_chains = 1,
112112
n_rounds = 8,
113-
multithreaded = true)
113+
multithreaded = false) # tests fail on multithreaded
114114

115115
samps = MCMCChains.Chains(pt)
116116

test/test_estimation_pigeons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pt = @time Pigeons.pigeons(target = FS2000_lp,
7070
record = [Pigeons.traces; Pigeons.round_trip; Pigeons.record_default()],
7171
n_chains = 1,
7272
n_rounds = 10,
73-
multithreaded = true)
73+
multithreaded = false) # tests fail on multithreaded
7474

7575
samps = MCMCChains.Chains(pt)
7676

test/test_pruned_3rd_order_estimation_pigeons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ pt = @time Pigeons.pigeons(target = Caldara_lp,
118118
record = [Pigeons.traces; Pigeons.round_trip; Pigeons.record_default()],
119119
n_chains = 1,
120120
n_rounds = 8,
121-
multithreaded = true)
121+
multithreaded = false) # tests fail on multithreaded
122122

123123
samps = MCMCChains.Chains(pt)
124124

0 commit comments

Comments
 (0)