Skip to content

Commit

Permalink
Bump version to 2.2.1 and mark broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeits committed Sep 2, 2020
1 parent fdb9e5a commit c4180cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ os:
- osx
julia:
- 1.3
- 1.4
- 1.5
- nightly
matrix:
fast_finish: true
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "RigidBodyDynamics"
uuid = "366cf18f-59d5-5db9-a4de-86a9f6786172"
version = "2.2.0"
version = "2.2.1"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand Down
7 changes: 6 additions & 1 deletion test/test_mechanism_algorithms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,12 @@ end
end
point_jacobian!(J_point, x, p, point)
let x = x
@test @allocated(point_jacobian!(J_point, x, p, point)) == 0
if VERSION < v"1.5-"
@test @allocated(point_jacobian!(J_point, x, p, point)) == 0
else
# https://github.com/JuliaRobotics/RigidBodyDynamics.jl/issues/590
@test_broken @allocated(point_jacobian!(J_point, x, p, point)) == 0
end
end
J = geometric_jacobian(x, p)
T = Twist(J, velocity(x))
Expand Down

0 comments on commit c4180cd

Please sign in to comment.