From 0f842f11400397196ff9834cad68a084fabdba13 Mon Sep 17 00:00:00 2001 From: Luis Benet Date: Wed, 27 Mar 2024 09:36:56 -0600 Subject: [PATCH] Mark failed tests by aqua as broken, run all tests --- test/aqua.jl | 3 ++- test/runtests.jl | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/test/aqua.jl b/test/aqua.jl index 04269a7c..c03062db 100644 --- a/test/aqua.jl +++ b/test/aqua.jl @@ -24,10 +24,11 @@ using Aqua end @testset "Aqua tests (additional)" begin + Aqua.test_ambiguities(NEOs, broken=true) Aqua.test_undefined_exports(NEOs) Aqua.test_deps_compat(NEOs) Aqua.test_stale_deps(NEOs) - Aqua.test_piracies(NEOs) + Aqua.test_piracies(NEOs; broken=true) Aqua.test_unbound_args(NEOs) Aqua.test_project_extras(NEOs) Aqua.test_persistent_tasks(NEOs) diff --git a/test/runtests.jl b/test/runtests.jl index bd368083..0a99be5a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -2,9 +2,9 @@ testfiles = ( "osculating.jl", - # "observations.jl", - # "propagation.jl", - # "orbit_determination.jl", + "observations.jl", + "propagation.jl", + "orbit_determination.jl", "dataframes.jl", "aqua.jl", )