diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05a1414..90df6ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,8 @@ unit-test-job: - julia --project=julia/Project.toml -E 'using Pkg; Pkg.test()' artifacts: paths: - - plots/plot_test.html - - plots/find_closest_test.html + - julia/plots/plot_test.html + - julia/plots/find_closest_test.html + - julia/plots/mbh_nominal.html + - julia/plots/mbh_best.html expire_in: 1 week diff --git a/julia/test/runtests.jl b/julia/test/runtests.jl index 9d25283..dc3d99d 100644 --- a/julia/test/runtests.jl +++ b/julia/test/runtests.jl @@ -6,10 +6,10 @@ using Thesis # Tests @testset "All Tests" begin -# include("spacecraft.jl") -# include("laguerre-conway.jl") -# include("propagator.jl") -# include("plotting.jl") + include("spacecraft.jl") + include("laguerre-conway.jl") + include("propagator.jl") + include("plotting.jl") include("find_closest.jl") include("monotonic_basin_hopping.jl") end