Skip to content

Commit f5c3782

Browse files
authored
Explicitly exclude the integration tests from test/runtests.jl (#2708)
1 parent 27294f3 commit f5c3782

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/runtests.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ testsuite = find_tests(@__DIR__)
77
# Add threads tests to be run with multiple Julia threads (will be configured in
88
# `test_worker`).
99
testsuite["threads/2"] = :(include($(joinpath(@__DIR__, "threads.jl"))))
10+
# Exclude integration tests, they're handled differently (they each run in their
11+
# own environment)
12+
for (k, _) in testsuite
13+
startswith(k, "integration/") && delete!(testsuite, k)
14+
end
1015

1116
# Parse arguments
1217
args = parse_args(ARGS)

0 commit comments

Comments
 (0)