From a222013ff7189efae0679e8a1f3ba6c86cb7c123 Mon Sep 17 00:00:00 2001 From: Bryan Kaperick Date: Tue, 6 Aug 2024 19:26:21 +0200 Subject: [PATCH] Revert addition of GLMakie to test/Project.toml. --- test/Project.toml | 1 - test/setup_plotting.jl | 2 ++ test/test_plotting_cairo.jl | 2 +- test/test_plotting_gl.jl | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 test/setup_plotting.jl diff --git a/test/Project.toml b/test/Project.toml index f1b25a83..193d45d1 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -7,7 +7,6 @@ DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e" Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" -GLMakie = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a" Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6" GraphsMatching = "c3af3a8c-b79e-4b01-bf44-c718d7e0e0d6" InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" diff --git a/test/setup_plotting.jl b/test/setup_plotting.jl new file mode 100644 index 00000000..2414d8fa --- /dev/null +++ b/test/setup_plotting.jl @@ -0,0 +1,2 @@ +using Pkg +Pkg.add("GLMakie") diff --git a/test/test_plotting_cairo.jl b/test/test_plotting_cairo.jl index a374f82b..1e07a9e4 100644 --- a/test/test_plotting_cairo.jl +++ b/test/test_plotting_cairo.jl @@ -1,5 +1,5 @@ @testitem "Plotting Cairo" tags=[:plotting_cairo] begin - using GLMakie + include("setup_plotting.jl") using CairoMakie CairoMakie.activate!() diff --git a/test/test_plotting_gl.jl b/test/test_plotting_gl.jl index ea4fcfe8..748ab973 100644 --- a/test/test_plotting_gl.jl +++ b/test/test_plotting_gl.jl @@ -1,4 +1,5 @@ @testitem "Plotting GL" tags=[:plotting_gl] begin + include("setup_plotting.jl") using GLMakie GLMakie.activate!()