Skip to content

Commit

Permalink
[DoNotMerge] test downstream packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kimikage committed May 13, 2024
1 parent 46f9b85 commit 61bcf8a
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
40 changes: 39 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,40 @@
using Colors, Test
# using Colors, Test
using Pkg

Pkg.activate("colors", shared = true)
Pkg.develop(PackageSpec(path = joinpath(@__DIR__, "..")))

try
Pkg.add("ColorVectorSpace")
Pkg.test("ColorVectorSpace")
catch
end

try
Pkg.add("ImageCore")
Pkg.test("ImageCore")
catch
end

try
Pkg.add("Images")
Pkg.test("Images")
catch
end

try
Pkg.add("Cairo")
Pkg.test("Cairo")
catch
end

try
Pkg.add("Makie")
Pkg.test("Makie")
catch
end

#=
@test isempty(detect_ambiguities(Colors, Base, Core))
include("algorithms.jl")
Expand All @@ -10,3 +46,5 @@ include("din99.jl")
include("display.jl")
include("parse.jl")
include("utilities.jl")
=#

0 comments on commit 61bcf8a

Please sign in to comment.