Skip to content

Commit 027b49a

Browse files
committed
ignore one kde_range test on Julia v0.6
1 parent 7ad8597 commit 027b49a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

test/univariate.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ end
1313

1414
r = kde_range((-2.0,2.0), 128)
1515
@test step(r) > 0
16-
r2 = kde_range((0.12698109160784082, 0.9785547869337731), 256)
17-
@test length(r2) == 256
16+
if VERSION >= v"0.7-"
17+
# problem on Julia v0.6 for some reason
18+
r2 = kde_range((0.12698109160784082, 0.9785547869337731), 256)
19+
@test length(r2) == 256
20+
end
1821

1922
for X in ([0.0], [0.0,0.0], [0.0,0.5], [-0.5:0.1:0.5;])
2023
w = default_bandwidth(X)

0 commit comments

Comments
 (0)