@@ -9,39 +9,49 @@ Test.@testset "Basic" begin
99 include (joinpath (" Basic" , " PendulumWithParameterizedDamper.jl" ))
1010 include (joinpath (" Basic" , " PendulumWithSpring.jl" ))
1111 include (joinpath (" Basic" , " DoublePendulumWithDampers.jl" ))
12- include (joinpath (" Basic" , " Mobile.jl" ))
1312 include (joinpath (" Basic" , " BoxPlanarMotion.jl" ))
1413 include (joinpath (" Basic" , " ShaftFreeMotion.jl" ))
1514 include (joinpath (" Basic" , " ShaftFreeMotionAdaptiveRotSequence.jl" ))
1615 Test. @test_throws LoadError include (joinpath (" Basic" , " Object3DWithoutParentError.jl" ))
16+ if testsExtend >= normalTests
17+ include (joinpath (" Basic" , " Mobile.jl" ))
18+ end
1719end
1820
1921Test. @testset " Robot" begin
2022 include (joinpath (" Robot" , " ServoWithRamp.jl" ))
2123 include (joinpath (" Robot" , " ServoWithRampAndPrismatic.jl" ))
2224 include (joinpath (" Robot" , " ServoWithRampAndRevolute.jl" ))
2325 include (joinpath (" Robot" , " ServoWithPathAndRevolute.jl" ))
24- include (joinpath (" Robot" , " YouBotWithSphere.jl" ))
25- Test. @test_skip include (joinpath (" Robot" , " YouBotPingPong.jl" )) # too long computation time
26- include (joinpath (" Robot" , " YouBotGripping.jl" ))
27- Test. @test_skip include (joinpath (" Robot" , " YouBotsGripping.jl" )) # too long computation time
26+ if testsExtend >= normalTests
27+ include (joinpath (" Robot" , " YouBotWithSphere.jl" ))
28+ include (joinpath (" Robot" , " YouBotGripping.jl" ))
29+ end
30+ if testsExtend == completeTests
31+ include (joinpath (" Robot" , " YouBotPingPong.jl" )) # long computation time
32+ include (joinpath (" Robot" , " YouBotsGripping.jl" )) # long computation time
33+ end
2834end
2935
3036Test. @testset " Collision" begin
3137 include (joinpath (" Collision" , " BouncingSphere.jl" ))
3238 include (joinpath (" Collision" , " BouncingSphereFreeMotion.jl" ))
3339 include (joinpath (" Collision" , " BouncingEllipsoid.jl" ))
34- include (joinpath (" Collision" , " BouncingCones.jl" ))
35- include (joinpath (" Collision" , " BouncingCapsules.jl" ))
36- include (joinpath (" Collision" , " BouncingBeams.jl" ))
3740 include (joinpath (" Collision" , " TwoCollidingBalls.jl" ))
3841 include (joinpath (" Collision" , " TwoCollidingBoxes.jl" ))
3942 include (joinpath (" Collision" , " CollidingCylinders.jl" ))
40- include (joinpath (" Collision" , " CollidingSphereWithBunnies.jl" ))
4143 include (joinpath (" Collision" , " NewtonsCradle.jl" ))
42- include (joinpath (" Collision" , " Billard4Balls.jl" ))
43- Test. @test_skip include (joinpath (" Collision" , " Billard16Balls.jl" )) # too long computation time
44- Test. @test_throws LoadError include (joinpath (" Collision" , " InValidCollisionPairingError.jl" )) # not defined collision pair material
44+ Test. @test_throws LoadError include (joinpath (" Collision" , " InValidCollisionPairingError.jl" )) # not defined collision pair material
45+ if testsExtend >= normalTests
46+ include (joinpath (" Collision" , " BouncingCones.jl" ))
47+ include (joinpath (" Collision" , " BouncingCapsules.jl" ))
48+ include (joinpath (" Collision" , " BouncingBeams.jl" ))
49+ include (joinpath (" Collision" , " CollidingSphereWithBunnies.jl" ))
50+ include (joinpath (" Collision" , " Billard4Balls.jl" ))
51+ end
52+ if testsExtend == completeTests
53+ include (joinpath (" Collision" , " Billard16Balls.jl" )) # long computation time
54+ end
4555end
4656
4757Test. @testset " Tutorial" begin
5363
5464Test. @testset " old" begin
5565 include (joinpath (" old" , " Move_Pendulum.jl" ))
56- Test. @test_skip include (joinpath (" old" , " Plot_cor.jl" )) # direct PyPlot calls
57- Test. @test_skip include (joinpath (" old" , " Plot_SlidingFriction.jl" )) # direct PyPlot calls
66+ if currentPlotPackage () == " PyPlot"
67+ include (joinpath (" old" , " Plot_cor.jl" )) # direct PyPlot calls
68+ include (joinpath (" old" , " Plot_SlidingFriction.jl" )) # direct PyPlot calls
69+ end
5870 include (joinpath (" old" , " test_Shapes.jl" ))
5971 include (joinpath (" old" , " Test_PathPlanning.jl" ))
6072 include (joinpath (" old" , " test_Solids.jl" ))
0 commit comments