You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ke...@apache.org on 2014/10/08 02:13:12 UTC

git commit: Increase timeout for PyPI HTTP fetches.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 156042770 -> badd5e146


Increase timeout for PyPI HTTP fetches.

This patch increases the timeout for PyPI HTTP fetches. This was
recomended by John Sirois to reduce the flakeyness of Python tests
on Apache Jenkins.

Testing Done:
./build-support/jenkins/build.sh

Reviewed at https://reviews.apache.org/r/26324/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/badd5e14
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/badd5e14
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/badd5e14

Branch: refs/heads/master
Commit: badd5e146b326811ab67ffef24aaabd25088ed87
Parents: 1560427
Author: Zameer Manji <zm...@twopensource.com>
Authored: Tue Oct 7 14:19:38 2014 -0700
Committer: Kevin Sweeney <ke...@apache.org>
Committed: Tue Oct 7 17:11:51 2014 -0700

----------------------------------------------------------------------
 build-support/jenkins/build.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/badd5e14/build-support/jenkins/build.sh
----------------------------------------------------------------------
diff --git a/build-support/jenkins/build.sh b/build-support/jenkins/build.sh
index 1a664e2..26e5d13 100755
--- a/build-support/jenkins/build.sh
+++ b/build-support/jenkins/build.sh
@@ -21,7 +21,9 @@ date
 ./gradlew -Pq clean build --stacktrace
 
 # Run all Python tests
-./pants src/test/python:all -vxs
+# Setting the timeout value to 1 minute ensures package fetches from PyPI do not
+# fail on Apache Jenkins.
+./pants build --timeout=60 src/test/python:all -vxs
 
 # Run Python style checks
 ./build-support/python/isort-check