Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 018AA200C31 for ; Wed, 22 Feb 2017 02:55:44 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 00266160B77; Wed, 22 Feb 2017 01:55:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 6FD87160B68 for ; Wed, 22 Feb 2017 02:55:43 +0100 (CET) Received: (qmail 70501 invoked by uid 500); 22 Feb 2017 01:55:42 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 70488 invoked by uid 99); 22 Feb 2017 01:55:42 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Feb 2017 01:55:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1CAA1DFF0F; Wed, 22 Feb 2017 01:55:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: altay@apache.org To: commits@beam.apache.org Date: Wed, 22 Feb 2017 01:55:42 -0000 Message-Id: <721909dfca234cdb82e2024e4719e421@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] beam git commit: Fix post commit script to install gcp dependencies archived-at: Wed, 22 Feb 2017 01:55:44 -0000 Repository: beam Updated Branches: refs/heads/master c3141ed99 -> 0d639e63d Fix post commit script to install gcp dependencies Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/aaa22789 Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/aaa22789 Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/aaa22789 Branch: refs/heads/master Commit: aaa227892821019b6a73e117f446f606b3e69ad4 Parents: c3141ed Author: Sourabh Bajaj Authored: Tue Feb 21 17:31:39 2017 -0800 Committer: Sourabh Bajaj Committed: Tue Feb 21 17:31:39 2017 -0800 ---------------------------------------------------------------------- sdks/python/run_postcommit.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/aaa22789/sdks/python/run_postcommit.sh ---------------------------------------------------------------------- diff --git a/sdks/python/run_postcommit.sh b/sdks/python/run_postcommit.sh index 3756075..fc83260 100755 --- a/sdks/python/run_postcommit.sh +++ b/sdks/python/run_postcommit.sh @@ -41,13 +41,13 @@ pip install virtualenv --user pip install tox --user # Tox runs unit tests in a virtual environment -${LOCAL_PATH}/tox -e py27 -c sdks/python/tox.ini +${LOCAL_PATH}/tox -e ALL -c sdks/python/tox.ini # Virtualenv for the rest of the script to run setup & e2e tests ${LOCAL_PATH}/virtualenv sdks/python . sdks/python/bin/activate cd sdks/python -python setup.py install +pip install -e .[gcp,test] # Run wordcount in the Direct Runner and validate output. echo ">>> RUNNING DIRECT RUNNER py-wordcount"