From 396d9b43435cbd59e2c9e04dcea05924024759c2 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Thu, 18 Dec 2025 15:45:12 +0530 Subject: [PATCH] Handle the `downstream_integration_test` test arg --- test/{Aqua.jl => AquaTest.jl} | 0 test/runtests.jl | 7 ++++++- 2 files changed, 6 insertions(+), 1 deletion(-) rename test/{Aqua.jl => AquaTest.jl} (100%) diff --git a/test/Aqua.jl b/test/AquaTest.jl similarity index 100% rename from test/Aqua.jl rename to test/AquaTest.jl diff --git a/test/runtests.jl b/test/runtests.jl index f9f5999..bc36a2b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -18,8 +18,13 @@ end # Start with autodiscovered tests testsuite = find_tests(pwd()) +if "--downstream_integration_test" in ARGS + delete!(testsuite, "AquaTest") +end +filtered_args = filter(!=("--downstream_integration_test"), ARGS) + # Parse arguments -args = parse_args(ARGS) +args = parse_args(filtered_args) if filter_tests!(testsuite, args) delete!(testsuite, "testutils")