add commented code to update refernce images
This commit is contained in:
parent
345f5654a3
commit
599d6a2ec8
@ -44,6 +44,30 @@ default(show=false, reuse=true)
|
|||||||
is_ci() = get(ENV, "CI", "false") == "true"
|
is_ci() = get(ENV, "CI", "false") == "true"
|
||||||
img_tol = is_ci() ? 1e-2 : 1e-3
|
img_tol = is_ci() ? 1e-2 : 1e-3
|
||||||
|
|
||||||
|
## Uncomment the following lines to update reference images for different backends
|
||||||
|
|
||||||
|
#=
|
||||||
|
@testset "GR" begin
|
||||||
|
image_comparison_facts(:gr, tol=img_tol, skip = Plots._backend_skips[:gr])
|
||||||
|
end
|
||||||
|
|
||||||
|
plotly()
|
||||||
|
@testset "Plotly" begin
|
||||||
|
image_comparison_facts(:plotly, tol=img_tol, skip = Plots._backend_skips[:plotlyjs])
|
||||||
|
end
|
||||||
|
|
||||||
|
pyplot()
|
||||||
|
@testset "PyPlot" begin
|
||||||
|
image_comparison_facts(:pyplot, tol=img_tol, skip = Plots._backend_skips[:pyplot])
|
||||||
|
end
|
||||||
|
|
||||||
|
pgfplots()
|
||||||
|
@testset "PGFPlots" begin
|
||||||
|
image_comparison_facts(:pgfplots, tol=img_tol, skip = Plots._backend_skips[:pgfplots])
|
||||||
|
end
|
||||||
|
=#
|
||||||
|
##
|
||||||
|
|
||||||
@testset "Backends" begin
|
@testset "Backends" begin
|
||||||
|
|
||||||
@testset "GR" begin
|
@testset "GR" begin
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user