Skip to content

Commit 2ebf47e

Browse files
authored
Handle the downstream_integration_test test arg (#369)
1 parent 1d0caa6 commit 2ebf47e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

File renamed without changes.

test/runtests.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ end
1818
# Start with autodiscovered tests
1919
testsuite = find_tests(pwd())
2020

21+
if "--downstream_integration_test" in ARGS
22+
delete!(testsuite, "AquaTest")
23+
end
24+
filtered_args = filter(!=("--downstream_integration_test"), ARGS)
25+
2126
# Parse arguments
22-
args = parse_args(ARGS)
27+
args = parse_args(filtered_args)
2328

2429
if filter_tests!(testsuite, args)
2530
delete!(testsuite, "testutils")

0 commit comments

Comments
 (0)