Skip to content

Commit

Permalink
Merge pull request #273 from JuliaCI/revert-267-dpa/slow
Browse files Browse the repository at this point in the history
Revert "Give "slow" packages even more time"
  • Loading branch information
maleadt authored Dec 9, 2024
1 parent 3215bed commit 5cc33ee
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/evaluate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,8 @@ 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*3)
config = Configuration(config; time_limit=config.time_limit*2)
end

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

0 comments on commit 5cc33ee

Please sign in to comment.