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/03/11 00:53:31 UTC

[1/2] beam git commit: Ignore results from the tox clean up phase

Repository: beam
Updated Branches:
  refs/heads/master 39688d8d4 -> f29bf89c1


Ignore results from the tox clean up phase

Some temporary files are generated only under certain conditions and
this should not fail tox.


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

Branch: refs/heads/master
Commit: 12016e59e84a841afcfcd55402daf7701460dcbc
Parents: 39688d8
Author: Ahmet Altay <al...@google.com>
Authored: Fri Mar 10 16:21:17 2017 -0800
Committer: Ahmet Altay <al...@google.com>
Committed: Fri Mar 10 16:21:17 2017 -0800

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


http://git-wip-us.apache.org/repos/asf/beam/blob/12016e59/sdks/python/tox.ini
----------------------------------------------------------------------
diff --git a/sdks/python/tox.ini b/sdks/python/tox.ini
index 807fe3f..2ed21c6 100644
--- a/sdks/python/tox.ini
+++ b/sdks/python/tox.ini
@@ -51,11 +51,11 @@ commands =
   pip install -e .[test]
   python apache_beam/examples/complete/autocomplete_test.py
   python setup.py test
-  # Clean up all cython generated files.
-  find apache_beam -type f -name '*.c' -delete
-  find apache_beam -type f -name '*.so' -delete
-  find target/build -type f -name '*.c' -delete
-  find target/build -type f -name '*.so' -delete
+  # Clean up all cython generated files. Ignore if deletion fails.
+  - find apache_beam -type f -name '*.c' -delete
+  - find apache_beam -type f -name '*.so' -delete
+  - find target/build -type f -name '*.c' -delete
+  - find target/build -type f -name '*.so' -delete
 passenv = TRAVIS*
 
 [testenv:py27gcp]


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

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


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

Branch: refs/heads/master
Commit: f29bf89c1df6a81c77e60ef8aac1edd1db37124e
Parents: 39688d8 12016e5
Author: Ahmet Altay <al...@google.com>
Authored: Fri Mar 10 16:32:08 2017 -0800
Committer: Ahmet Altay <al...@google.com>
Committed: Fri Mar 10 16:32:08 2017 -0800

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