File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
- # ColorQuantization
1
+ # ColorQuantization.jl
2
2
3
3
[ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://juliaimages.github.io/ColorQuantization.jl/stable/ )
4
4
[ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://juliaimages.github.io/ColorQuantization.jl/dev/ )
5
5
[ ![ Build Status] ( https://github.com/JuliaImages/ColorQuantization.jl/actions/workflows/CI.yml/badge.svg?branch=main )] ( https://github.com/JuliaImages/ColorQuantization.jl/actions/workflows/CI.yml?query=branch%3Amain )
6
+ [ ![ Aqua QA] ( https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg )] ( https://github.com/JuliaTesting/Aqua.jl )
6
7
[ ![ Coverage] ( https://codecov.io/gh/JuliaImages/ColorQuantization.jl/branch/main/graph/badge.svg )] ( https://codecov.io/gh/JuliaImages/ColorQuantization.jl )
7
8
8
9
A Julia package to generate color palettes from images.
Original file line number Diff line number Diff line change 1
1
[deps ]
2
+ Aqua = " 4c88cf16-eb10-579e-8560-4a9242c79595"
2
3
Colors = " 5ae59095-9a9b-59fe-a467-6f913c188581"
3
4
Random = " 9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
4
5
ReferenceTests = " 324d217c-45ce-50fc-942e-d289b448e8cf"
@@ -10,4 +11,4 @@ TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
10
11
Colors = " 0.12"
11
12
ReferenceTests = " 0.10"
12
13
StableRNGs = " 1"
13
- TestImages = " 1"
14
+ TestImages = " 1"
Original file line number Diff line number Diff line change 1
1
using ColorQuantization
2
2
using Test
3
+ using Aqua
3
4
using TestImages, ReferenceTests
4
5
using Colors
5
6
using Random, StableRNGs
6
7
8
+ # Run Aqua.jl quality assurance tests
9
+ Aqua. test_all (ColorQuantization; ambiguities= false )
10
+ Aqua. test_ambiguities ([ColorQuantization, Core])
11
+
12
+ # Run package tests
7
13
rng = StableRNG (123 )
8
14
Random. seed! (rng, 34568 )
9
15
You can’t perform that action at this time.
0 commit comments