We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35295a2 commit 849ecd2Copy full SHA for 849ecd2
examples/validation-turan/run.jl
@@ -33,6 +33,9 @@ cases =
33
if haskey(ENV, "GITHUB_ACTIONS")
34
n_elems = 20
35
cases = cases[1:1]
36
+ cases[1][4] = n_elems
37
+ @info "Changed values for CI:"
38
+ @show n_elems, cases
39
end
40
41
outs = []
test/runtests.jl
@@ -16,7 +16,7 @@ end
16
dir, _ = splitdir(fullpath)
17
@testset "$(fullpath)" begin
18
cd(dir) do
19
- @eval Module() begin
+ @time @eval Module() begin
20
# to avoid putting all examples in a separte main()
21
# to avoid conflicting redefinitions of variables/functions
22
# see: https://github.com/JuliaLang/julia/issues/40189
0 commit comments