Skip to content

Commit 5530296

Browse files
committed
Add test folder
1 parent 291f15c commit 5530296

File tree

6 files changed

+31
-9
lines changed

6 files changed

+31
-9
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
1010
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
1111

1212
[compat]
13-
julia = "1.6"
1413
ColorSchemes = "3"
1514
Colors = "0.12"
1615
Crayons = "4"
1716
FixedPointNumbers = "0.8"
17+
julia = "1.6"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TextHeatmaps
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://adrhill.github.io/TextHeatmaps.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://adrhill.github.io/TextHeatmaps.jl/dev/)
5-
[![Build Status](https://github.com/adrhill/TextHeatmaps.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/adrhill/TextHeatmaps.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/adrhill/TextHeatmaps.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/adrhill/TextHeatmaps.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://Julia-XAI.github.io/TextHeatmaps.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://Julia-XAI.github.io/TextHeatmaps.jl/dev/)
5+
[![Build Status](https://github.com/Julia-XAI/TextHeatmaps.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Julia-XAI/TextHeatmaps.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/Julia-XAI/TextHeatmaps.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/Julia-XAI/TextHeatmaps.jl)

docs/make.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ DocMeta.setdocmeta!(TextHeatmaps, :DocTestSetup, :(using TextHeatmaps); recursiv
66
makedocs(;
77
modules=[TextHeatmaps],
88
authors="Adrian Hill <[email protected]>",
9-
repo="https://github.com/adrhill/TextHeatmaps.jl/blob/{commit}{path}#{line}",
9+
repo="https://github.com/Julia-XAI/TextHeatmaps.jl/blob/{commit}{path}#{line}",
1010
sitename="TextHeatmaps.jl",
1111
format=Documenter.HTML(;
1212
prettyurls=get(ENV, "CI", "false") == "true",
13-
canonical="https://adrhill.github.io/TextHeatmaps.jl",
13+
canonical="https://Julia-XAI.github.io/TextHeatmaps.jl",
1414
edit_link="main",
1515
assets=String[],
1616
),
1717
pages=["Home" => "index.md", "Getting started" => "example.md"],
1818
)
1919

20-
deploydocs(; repo="github.com/adrhill/TextHeatmaps.jl", devbranch="main")
20+
deploydocs(; repo="github.com/Julia-XAI/TextHeatmaps.jl", devbranch="main")

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CurrentModule = TextHeatmaps
44

55
# TextHeatmaps.jl
66

7-
Documentation for [TextHeatmaps.jl](https://github.com/adrhill/TextHeatmaps.jl).
7+
Documentation for [TextHeatmaps.jl](https://github.com/Julia-XAI/TextHeatmaps.jl).
88

99
## Installation
1010
To install this package and its dependencies, open the Julia REPL and run

test/Project.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[deps]
2+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3+
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
4+
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
5+
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
6+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
7+
8+
[compat]
9+
Aqua = "0.7"
10+
ColorSchemes = "3"
11+
Colors = "0.12"
12+
ReferenceTests = "0.10"

test/runtests.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using TextHeatmaps
2+
using Test
3+
using Aqua
4+
5+
@testset "TextHeatmaps.jl" begin
6+
@testset "Aqua.jl" begin
7+
@info "Running Aqua.jl's auto quality assurance tests. These might print warnings from dependencies."
8+
Aqua.test_all(TextHeatmaps)
9+
end
10+
end

0 commit comments

Comments
 (0)