Skip to content

Commit

Permalink
add test targets
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Sep 19, 2024
1 parent 7704240 commit 742d8ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ julia = "1"
[extras]
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
LightXML = "9c8b4983-aa76-5018-a973-4c85ecc9e179"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
MetaGraphsNext = "fa8bd995-216d-47f1-8a91-f3b68fbeb377"

[targets]
test = ["OrdinaryDiffEq", "Test"]
test = ["OrdinaryDiffEq", "Test", "JuliaFormatter", "LightXML", "Graphs", "MetaGraphsNext"]
4 changes: 4 additions & 0 deletions docs/src/urdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ out = "multibody_urdf.jl"
urdf2multibody(filename; extras=true, out)

include(out) # Include model, perform simulation and plotting
```

```@docs
Multibody.urdf2multibody
```
4 changes: 2 additions & 2 deletions ext/Render.jl
Original file line number Diff line number Diff line change
Expand Up @@ -696,8 +696,8 @@ function rot_from_line(d)
RotMatrix{3}([x y d])
end

Multibody.render!(scene, ::typeof(URDFRevolute), sys, sol, t) = false
Multibody.render!(scene, ::typeof(URDFPrismatic), sys, sol, t) = false
Multibody.render!(scene, ::typeof(Multibody.URDFRevolute), sys, sol, t) = false
Multibody.render!(scene, ::typeof(Multibody.URDFPrismatic), sys, sol, t) = false

# ==============================================================================
## PlanarMechanics
Expand Down

0 comments on commit 742d8ff

Please sign in to comment.