Skip to content

Commit d632f70

Browse files
committed
Add Aqua.test_all to tests
1 parent 408a821 commit d632f70

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

Project.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ LinearSampling_jll = "= 1.0.0"
2020
LinearTurboFold_jll = "= 0.0.1"
2121
Unitful = "1.11"
2222
julia = "1.7"
23+
24+
[extras]
25+
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
26+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
27+
28+
[targets]
29+
test = ["Aqua", "Test"]

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Julia interface to LinearFold
22

33
[![Build Status](https://github.com/marcom/LinearFold.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/marcom/LinearFold.jl/actions/workflows/CI.yml?query=branch%3Amain)
4+
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)
45

56
Unofficial Julia interface to the
67
[LinearFold](https://github.com/LinearFold) suite of programs for RNA

test/Project.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/aqua.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import Aqua
2+
using LinearFold
3+
4+
@testset "Aqua.test_all" begin
5+
showtestset()
6+
Aqua.test_all(LinearFold)
7+
end

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ end
5252

5353
@testset verbose=true "LinearFold" begin
5454
showtestset()
55+
include("aqua.jl")
5556

5657
@testset "energy" begin
5758
showtestset()

0 commit comments

Comments
 (0)