Skip to content
This repository has been archived by the owner on Nov 24, 2020. It is now read-only.

Commit

Permalink
reduce timeouts further
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Aug 12, 2017
1 parent c3b629d commit 1e642b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ do
# standard for build time and memory consumption, see
# https://github.com/JuliaCI/PackageEvaluator.jl/issues/83
# The log for adding the package will go in the results folder.
timeout -s 9 2000s julia -e "Pkg.add(\"${PKGNAME}\")" 2>&1 | tee PKGEVAL_${PKGNAME}_add.log
timeout -s 9 1800s julia -e "Pkg.add(\"${PKGNAME}\")" 2>&1 | tee PKGEVAL_${PKGNAME}_add.log
# A package can have four states:
# - Not testable: for some reason, we can't even analyze how
# broken or not the package is, usually due to a limitation
Expand Down
2 changes: 1 addition & 1 deletion src/preptest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function prepare_test()
if get(PKGOPTS, pkg_name, :NORMAL) == :XVFB
print(fp, "xvfb-run ")
end
print(fp, "$TIMEOUTPATH -s 9 1080s ")
print(fp, "$TIMEOUTPATH -s 9 900s ")
print(fp, "julia -e 'versioninfo(true); Pkg.test(\"", pkg_name, "\")'")
print(fp, " 2>&1 | tee PKGEVAL_", pkg_name, "_test.log")
close(fp)
Expand Down

0 comments on commit 1e642b7

Please sign in to comment.