We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b29c16d commit 965ac50Copy full SHA for 965ac50
2 files changed
Project.toml
@@ -7,10 +7,15 @@ version = "0.1.0"
7
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
8
9
[compat]
10
+Aqua = "0.8"
11
Dates = "1.10"
12
+SafeTestsets = "0.1"
13
julia = "1.10"
14
+
15
[extras]
16
+Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
17
+SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
18
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
19
20
[targets]
-test = ["Test"]
21
+test = ["Aqua", "Test", "SafeTestsets"]
test/runtests.jl
@@ -1,7 +1,10 @@
1
-using AlgorithmsInterface, Test
+using SafeTestsets
2
3
-let
4
- @testset "Newton" begin
5
- include("newton.jl")
6
- end
+@safetestset "Newton" begin
+ include("newton.jl")
+end
+@safetestset "Aqua" begin
+ using AlgorithmsInterface, Aqua
+ Aqua.test_all(AlgorithmsInterface)
end
0 commit comments