Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Give "slow" packages even more time #267

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/evaluate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,11 @@ function evaluate_test(config::Configuration, pkg::Package; use_cache::Bool=true
name = "$(pkg.name)-$(config.name)-$(randstring(rng))"

# grant some packages more test time
# As of Julia 1.12, PackageCompiler takes even more time (more than 90 minutes),
# so let's do *3 instead of *2. Our slow list is very short (just two packages
# at the time or writing), so I think it's fine.
if pkg.name in slow_list
config = Configuration(config; time_limit=config.time_limit*2)
config = Configuration(config; time_limit=config.time_limit*3)
end

# we create our own workdir so that we can reuse it
Expand Down
Loading