Skip to content

Commit 9f243b2

Browse files
authored
Handle the downstream_integration_test test arg (#973)
* Handle the `downstream_integration_test` test arg * Fix Aqua test name
1 parent db18324 commit 9f243b2

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

test/runtests.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ using ParallelTestRunner
66
# Start with autodiscovered tests
77
testsuite = find_tests(pwd())
88

9+
if "--downstream_integration_test" in ARGS
10+
delete!(testsuite, "AquaTest")
11+
end
12+
filtered_args = filter(!=("--downstream_integration_test"), ARGS)
13+
914
# Parse arguments
10-
args = parse_args(ARGS)
15+
args = parse_args(filtered_args)
1116

1217
if filter_tests!(testsuite, args)
13-
# Remove tests that shouldn't run on Windows
1418
delete!(testsuite, "testutils")
1519
end
1620

0 commit comments

Comments
 (0)