We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
downstream_integration_test
1 parent db18324 commit 9f243b2Copy full SHA for 9f243b2
1 file changed
test/runtests.jl
@@ -6,11 +6,15 @@ using ParallelTestRunner
6
# Start with autodiscovered tests
7
testsuite = find_tests(pwd())
8
9
+if "--downstream_integration_test" in ARGS
10
+ delete!(testsuite, "AquaTest")
11
+end
12
+filtered_args = filter(!=("--downstream_integration_test"), ARGS)
13
+
14
# Parse arguments
-args = parse_args(ARGS)
15
+args = parse_args(filtered_args)
16
17
if filter_tests!(testsuite, args)
- # Remove tests that shouldn't run on Windows
18
delete!(testsuite, "testutils")
19
end
20
0 commit comments