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 f88b4d0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
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"]
19 changes: 19 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -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")
Expand All @@ -10,3 +27,5 @@ include("din99.jl")
include("display.jl")
include("parse.jl")
include("utilities.jl")
=#

0 comments on commit f88b4d0

Please sign in to comment.