From f88b4d0ba00a10b26635cb0890694f8d33bef726 Mon Sep 17 00:00:00 2001 From: kimikage Date: Mon, 13 May 2024 17:41:32 +0900 Subject: [PATCH] [DoNotMerge] test downstream packages --- Project.toml | 3 ++- test/runtests.jl | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2dd12871..83bf200c 100644 --- a/Project.toml +++ b/Project.toml @@ -15,7 +15,8 @@ julia = "1" [extras] InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" +Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [targets] -test = ["InteractiveUtils", "Test"] +test = ["InteractiveUtils", "Pkg", "Test"] diff --git a/test/runtests.jl b/test/runtests.jl index c544e348..66f59bd2 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,21 @@ using Colors, Test +using Pkg +Pkg.add("ColorVectorSpace") +Pkg.test("ColorVectorSpace") + +Pkg.add("ImageCore") +Pkg.test("ImageCore") + +Pkg.add("Images") +Pkg.test("Images") + +Pkg.add("Cairo") +Pkg.test("Cairo") + +Pkg.add("Makie") +Pkg.test("Makie") + +#= @test isempty(detect_ambiguities(Colors, Base, Core)) include("algorithms.jl") @@ -10,3 +27,5 @@ include("din99.jl") include("display.jl") include("parse.jl") include("utilities.jl") + +=#