File tree Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Expand file tree Collapse file tree 2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 1
- using Documenter
2
1
using CoordinateTransformations
2
+ using Documenter
3
+
4
+ DocMeta. setdocmeta! (
5
+ CoordinateTransformations,
6
+ :DocTestSetup ,
7
+ :(using CoordinateTransformations),
8
+ recursive = true ,
9
+ )
3
10
4
11
makedocs (
5
12
sitename = " CoordinateTransformations.jl" ,
Original file line number Diff line number Diff line change @@ -4,15 +4,22 @@ using CoordinateTransformations
4
4
using ForwardDiff: Dual, partials
5
5
using StaticArrays
6
6
using Unitful
7
- using Documenter: doctest
7
+ using Documenter
8
8
using Aqua
9
9
10
10
@testset " CoordinateTransformations" begin
11
-
12
- doctest (CoordinateTransformations, manual= false )
13
11
include (" core.jl" )
14
12
include (" coordinatesystems.jl" )
15
13
include (" affine.jl" )
16
14
include (" perspective.jl" )
15
+
17
16
Aqua. test_all (CoordinateTransformations)
17
+
18
+ DocMeta. setdocmeta! (
19
+ CoordinateTransformations,
20
+ :DocTestSetup ,
21
+ :(using CoordinateTransformations),
22
+ recursive= true ,
23
+ )
24
+ doctest (CoordinateTransformations, manual= true )
18
25
end
You can’t perform that action at this time.
0 commit comments