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 <[email protected]> Authored: Tue May 30 14:19:25 2017 -0700 Committer: Ahmet Altay <[email protected]> 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*
