From 9cb7bdbcd631d3147d2e06ccad0fcb9ae4268755 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Thu, 18 Dec 2025 14:40:56 +0530 Subject: [PATCH 1/2] Handle the `downstream_integration_test` test arg --- test/runtests.jl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 5dfa301a7..07d5bf3a9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -6,11 +6,15 @@ using ParallelTestRunner # Start with autodiscovered tests testsuite = find_tests(pwd()) +if "--downstream_integration_test" in ARGS + delete!(testsuite, "test_aqua") +end +filtered_args = filter(!=("--downstream_integration_test"), ARGS) + # Parse arguments -args = parse_args(ARGS) +args = parse_args(filtered_args) if filter_tests!(testsuite, args) - # Remove tests that shouldn't run on Windows delete!(testsuite, "testutils") end From ba2489fbc7afbcfcb26743cc355ae6a162ea1828 Mon Sep 17 00:00:00 2001 From: Jishnu Bhattacharya Date: Thu, 18 Dec 2025 15:42:22 +0530 Subject: [PATCH 2/2] Fix Aqua test name --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 07d5bf3a9..0c9099939 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -7,7 +7,7 @@ using ParallelTestRunner testsuite = find_tests(pwd()) if "--downstream_integration_test" in ARGS - delete!(testsuite, "test_aqua") + delete!(testsuite, "AquaTest") end filtered_args = filter(!=("--downstream_integration_test"), ARGS)