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 1882C200CA7 for ; Wed, 31 May 2017 01:47:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1713D160BDD; Tue, 30 May 2017 23:47:05 +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 67F14160BC9 for ; Wed, 31 May 2017 01:47:04 +0200 (CEST) Received: (qmail 43898 invoked by uid 500); 30 May 2017 23:47:02 -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 43888 invoked by uid 99); 30 May 2017 23:47:02 -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; Tue, 30 May 2017 23:47:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8C9E8DFE5C; Tue, 30 May 2017 23:47:02 +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: Tue, 30 May 2017 23:47:02 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/2] beam git commit: Clean up pyc files before running tests archived-at: Tue, 30 May 2017 23:47:05 -0000 Repository: beam Updated Branches: refs/heads/master 94d677dc9 -> f9431a390 Clean up pyc files before running tests Project: http://git-wip-us.apache.org/repos/asf/beam/repo Commit: http://git-wip-us.apache.org/repos/asf/beam/commit/2ddaaeac Tree: http://git-wip-us.apache.org/repos/asf/beam/tree/2ddaaeac Diff: http://git-wip-us.apache.org/repos/asf/beam/diff/2ddaaeac Branch: refs/heads/master Commit: 2ddaaeac1462e88bb447802f7574d4a4cee12ed0 Parents: 94d677d Author: Sourabh Bajaj Authored: Tue May 30 14:19:25 2017 -0700 Committer: Ahmet Altay Committed: Tue May 30 16:45:06 2017 -0700 ---------------------------------------------------------------------- sdks/python/tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/beam/blob/2ddaaeac/sdks/python/tox.ini ---------------------------------------------------------------------- diff --git a/sdks/python/tox.ini b/sdks/python/tox.ini index 917e907..2166f6a 100644 --- a/sdks/python/tox.ini +++ b/sdks/python/tox.ini @@ -31,6 +31,8 @@ deps = grpcio-tools==1.3.5 commands = python --version + # Clean up all previous python generated files. + - find apache_beam -type f -name '*.pyc' -delete pip install -e .[test] python apache_beam/examples/complete/autocomplete_test.py python setup.py test @@ -50,6 +52,8 @@ deps = whitelist_externals=find commands = python --version + # Clean up all previous python generated files. + - find apache_beam -type f -name '*.pyc' -delete # Clean up all previous cython generated files. - find apache_beam -type f -name '*.c' -delete - find apache_beam -type f -name '*.so' -delete @@ -72,6 +76,8 @@ deps = commands = pip install -e .[test,gcp] python --version + # Clean up all previous python generated files. + - find apache_beam -type f -name '*.pyc' -delete python apache_beam/examples/complete/autocomplete_test.py python setup.py test passenv = TRAVIS*