From ae16022fe8964f665ccdc6286eeb3bff1744709c Mon Sep 17 00:00:00 2001 From: Duncan Eddy Date: Mon, 27 May 2024 17:25:39 -0700 Subject: [PATCH] Fix: Fix error in test suite from commented out tests in development --- test/runtests.jl | 76 ++++++++++++++++++++++++------------------------ 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index aca75c1..072157e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -50,48 +50,48 @@ end # Load default test Earth Orientation Data load_eop(TEST_FINALS_EOP_DATA, :FINALS_2000) - # testdir = joinpath(dirname(@__DIR__), "test") - # @time @testset "SatelliteDynamics.Contants" begin - # include(joinpath(testdir, "test_constants.jl")) - # end - # @time @testset "SatelliteDynamics.Universe" begin - # include(joinpath(testdir, "test_universe.jl")) - # end - # @time @testset "SatelliteDynamics.Time" begin - # include(joinpath(testdir, "test_time.jl")) - # end - # @time @testset "SatelliteDynamics.Refsys" begin - # include(joinpath(testdir, "test_reference_systems.jl")) - # end - # @time @testset "SatelliteDynamics.Attitude" begin - # include(joinpath(testdir, "test_attitude.jl")) - # end - # @time @testset "SatelliteDynamics.Coordinates" begin - # include(joinpath(testdir, "test_coordinates.jl")) - # end - # @time @testset "SatelliteDynamics.Astrodynamics" begin - # include(joinpath(testdir, "test_astrodynamics.jl")) - # end - # @time @testset "SatelliteDynamics.OrbitDynamics" begin - # include(joinpath(testdir, "test_orbitdynamics.jl")) - # end - # @time @testset "SatelliteDynamics.SGPModels" begin - # include(joinpath(testdir, "test_sgp_models.jl")) - # end + testdir = joinpath(dirname(@__DIR__), "test") + @time @testset "SatelliteDynamics.Contants" begin + include(joinpath(testdir, "test_constants.jl")) + end + @time @testset "SatelliteDynamics.Universe" begin + include(joinpath(testdir, "test_universe.jl")) + end + @time @testset "SatelliteDynamics.Time" begin + include(joinpath(testdir, "test_time.jl")) + end + @time @testset "SatelliteDynamics.Refsys" begin + include(joinpath(testdir, "test_reference_systems.jl")) + end + @time @testset "SatelliteDynamics.Attitude" begin + include(joinpath(testdir, "test_attitude.jl")) + end + @time @testset "SatelliteDynamics.Coordinates" begin + include(joinpath(testdir, "test_coordinates.jl")) + end + @time @testset "SatelliteDynamics.Astrodynamics" begin + include(joinpath(testdir, "test_astrodynamics.jl")) + end + @time @testset "SatelliteDynamics.OrbitDynamics" begin + include(joinpath(testdir, "test_orbitdynamics.jl")) + end + @time @testset "SatelliteDynamics.SGPModels" begin + include(joinpath(testdir, "test_sgp_models.jl")) + end # Earth Environment @time @testset "SatelliteDynamics.NRLMSISE00" begin include(joinpath(testdir, "earth_environment/", "test_spaceweather.jl")) end - # @time @testset "SatelliteDynamics.NRLMSISE00" begin - # include(joinpath(testdir, "earth_environment/", "test_nrlmsise00.jl")) - # end + @time @testset "SatelliteDynamics.NRLMSISE00" begin + include(joinpath(testdir, "earth_environment/", "test_nrlmsise00.jl")) + end - # # Simulation Tools - # @time @testset "SatelliteDynamics.Integrators" begin - # include(joinpath(testdir, "simulation/", "test_integrators.jl")) - # end - # @time @testset "SatelliteDynamics.Propagators" begin - # include(joinpath(testdir, "simulation/", "test_propagators.jl")) - # end + # Simulation Tools + @time @testset "SatelliteDynamics.Integrators" begin + include(joinpath(testdir, "simulation/", "test_integrators.jl")) + end + @time @testset "SatelliteDynamics.Propagators" begin + include(joinpath(testdir, "simulation/", "test_propagators.jl")) + end end \ No newline at end of file