You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by al...@apache.org on 2017/05/30 23:47:02 UTC

[1/2] beam git commit: Clean up pyc files before running tests

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 <so...@google.com>
Authored: Tue May 30 14:19:25 2017 -0700
Committer: Ahmet Altay <al...@google.com>
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*


[2/2] beam git commit: This closes #3262

Posted by al...@apache.org.
This closes #3262


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

Branch: refs/heads/master
Commit: f9431a3900692252a7c68d8c3c1d27b83a0c5d07
Parents: 94d677d 2ddaaea
Author: Ahmet Altay <al...@google.com>
Authored: Tue May 30 16:46:42 2017 -0700
Committer: Ahmet Altay <al...@google.com>
Committed: Tue May 30 16:46:42 2017 -0700

----------------------------------------------------------------------
 sdks/python/tox.ini | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------