diff --git a/test/misc/qa_tests.jl b/test/misc/qa_tests.jl index cf4a3958..725256ec 100644 --- a/test/misc/qa_tests.jl +++ b/test/misc/qa_tests.jl @@ -1,10 +1,10 @@ -@testitem "Quality Assurance" begin +@testitem "Quality Assurance" tags=[:qa] begin using Aqua Aqua.test_all(BoundaryValueDiffEq; ambiguities = false) end -@testitem "JET Package Test" begin +@testitem "JET Package Test" tags=[:qa] begin using JET JET.test_package(BoundaryValueDiffEq, target_defined_modules = true) diff --git a/test/runtests.jl b/test/runtests.jl index e92300f9..7b14b9de 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -14,5 +14,5 @@ const RETESTITEMS_NWORKER_THREADS = parse(Int, @info "Running tests for group: $(GROUP) with $(RETESTITEMS_NWORKERS) workers" ReTestItems.runtests( - BoundaryValueDiffEq; tags = (GROUP == "all" ? nothing : [Symbol(GROUP)]), + BoundaryValueDiffEq; tags = (GROUP == "all" ? [:!qa] : (GROUP == "qa" ? [:qa] : [Symbol(GROUP)])), nworkers = RETESTITEMS_NWORKERS, nworker_threads = RETESTITEMS_NWORKER_THREADS)