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.
test/runtests.jl
1 parent 27294f3 commit f5c3782Copy full SHA for f5c3782
test/runtests.jl
@@ -7,6 +7,11 @@ testsuite = find_tests(@__DIR__)
7
# Add threads tests to be run with multiple Julia threads (will be configured in
8
# `test_worker`).
9
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
15
16
# Parse arguments
17
args = parse_args(ARGS)
0 commit comments