You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/08/07 21:50:39 UTC

allura git commit: bump up run_tests multiprocessing timeout

Repository: allura
Updated Branches:
  refs/heads/master 8a226bd59 -> 032c2ed88


bump up run_tests multiprocessing timeout


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/032c2ed8
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/032c2ed8
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/032c2ed8

Branch: refs/heads/master
Commit: 032c2ed88e4882bc4018f8632b9a3f8d5239b8f4
Parents: 8a226bd
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Fri Aug 7 19:50:26 2015 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Fri Aug 7 19:50:26 2015 +0000

----------------------------------------------------------------------
 run_tests | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/032c2ed8/run_tests
----------------------------------------------------------------------
diff --git a/run_tests b/run_tests
index c91362c..4640244 100755
--- a/run_tests
+++ b/run_tests
@@ -30,7 +30,7 @@ import textwrap
 CPUS = multiprocessing.cpu_count()
 CONCURRENT_SUITES = (CPUS // 4) or CPUS
 CONCURRENT_TESTS = max(CPUS // CONCURRENT_SUITES, 2)  # need at least two, see thread http://mail-archives.apache.org/mod_mbox/allura-dev/201409.mbox/%3C541C5756.1020604%40brondsema.net%3E
-PROC_TIMEOUT = 180
+PROC_TIMEOUT = 360
 
 ALT_PKG_PATHS = {
     'Allura': 'allura/tests/',