Skip to content

Commit

Permalink
Fix: Fix error in test suite from commented out tests in development
Browse files Browse the repository at this point in the history
  • Loading branch information
duncaneddy committed May 28, 2024
1 parent 76a5e62 commit ae16022
Showing 1 changed file with 38 additions and 38 deletions.
76 changes: 38 additions & 38 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ae16022

Please sign in to comment.