You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2016/12/03 06:15:49 UTC

[1/2] incubator-beam git commit: Closes #1456

Repository: incubator-beam
Updated Branches:
  refs/heads/python-sdk 9a175a5fe -> 7c5e4aa66


Closes #1456


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

Branch: refs/heads/python-sdk
Commit: 7c5e4aa66c3916b98cf7ecf932f11c2b057e1858
Parents: 9a175a5 90db790
Author: Robert Bradshaw <ro...@gmail.com>
Authored: Fri Dec 2 22:15:41 2016 -0800
Committer: Robert Bradshaw <ro...@gmail.com>
Committed: Fri Dec 2 22:15:41 2016 -0800

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[2/2] incubator-beam git commit: Removing a bug in .travis.yml that makes the build fail.

Posted by ro...@apache.org.
Removing a bug in .travis.yml that makes the build fail.


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

Branch: refs/heads/python-sdk
Commit: 90db7908b807cb752c23c445b220b3d5dd08b36b
Parents: 9a175a5
Author: Pablo <pa...@google.com>
Authored: Tue Nov 29 13:58:55 2016 -0800
Committer: Robert Bradshaw <ro...@gmail.com>
Committed: Fri Dec 2 22:15:41 2016 -0800

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/90db7908/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 3080341..470d2fc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -59,7 +59,7 @@ before_install:
 install:
   - if [ ! "$TEST_PYTHON" ]; then travis_retry mvn -B install clean -U -DskipTests=true; fi
   - if [ "$TEST_PYTHON" ] && pip list | grep tox; then TOX_FILE=`which tox` ; export TOX_HOME=`dirname $TOX_FILE`; fi
-  - if [ "$TEST_PYTHON" ] && ! pip list | grep tox; then travis_retry pip install tox --user `whoami`; fi
+  - if [ "$TEST_PYTHON" ] && ! pip list | grep tox; then travis_retry pip install tox --user; fi
   # Removing this here protects from inadvertent caching
   - rm -rf "$HOME/.m2/repository/org/apache/beam"