Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gh julia10update #137

Merged
merged 3 commits into from
Jan 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9.4'
- '1.10.0'
os:
- ubuntu-latest
- windows-latest
Expand Down
4 changes: 2 additions & 2 deletions test/includeTests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Test.@testset "Basic" begin
include(joinpath("Basic", "AllShapes.jl"))
include(joinpath("Basic", "PendulumWithBar1.jl"))
include(joinpath("Basic", "PendulumWithBar2.jl"))
Test.@test_broken include(joinpath("Basic", "PendulumWithBar3.jl")) # error when called from here, works when called from REPL
include(joinpath("Basic", "PendulumWithBar3.jl"))
include(joinpath("Basic", "PendulumWithDamper.jl"))
include(joinpath("Basic", "PendulumWithFix.jl"))
include(joinpath("Basic", "PendulumWithParameterizedDamper.jl"))
Expand Down Expand Up @@ -58,7 +58,7 @@ Test.@testset "Robot" begin
include(joinpath("Robot", "ServoWithRampAndRevolute.jl"))
include(joinpath("Robot", "ServoWithPathAndRevolute.jl"))
if testsExtend >= normalTests
Test.@test_broken include(joinpath("Robot", "YouBotWithSphere.jl")) # LinearAlgebra.SingularException
Test.@test_skip include(joinpath("Robot", "YouBotWithSphere.jl")) # LinearAlgebra.SingularException on some platforms
include(joinpath("Robot", "YouBotGripping.jl"))
include(joinpath("Robot", "YouBotSphereTransport.jl"))
end
Expand Down
Loading