Repository: aurora Updated Branches: refs/heads/master 327797611 -> bf43f8c05
Upgrade to pants 0.0.64 and pex 1.1.1. CHANGELOGs are here: + http://pantsbuild.github.io/changelog.html + https://pypi.python.org/pypi/pex/1.1.1 The pants upgrade ends the deprecation cycle for the `python_test_suite` aggregator target; so these are all switched to the reccomended `target` aggregator target. The pex upgrade brings in support for a global `/etc/pexrc` which could be desirable for control over the executor components. 3rdparty/python/requirements.txt | 2 +- pants.ini | 2 +- src/test/python/BUILD | 2 +- src/test/python/apache/aurora/BUILD | 2 +- src/test/python/apache/aurora/admin/BUILD | 2 +- src/test/python/apache/aurora/client/BUILD | 2 +- src/test/python/apache/aurora/client/api/BUILD | 2 +- src/test/python/apache/aurora/client/cli/BUILD | 2 +- src/test/python/apache/aurora/client/hooks/BUILD | 2 +- src/test/python/apache/aurora/common/BUILD | 2 +- src/test/python/apache/aurora/config/BUILD | 2 +- src/test/python/apache/aurora/executor/BUILD | 6 +++--- src/test/python/apache/aurora/executor/bin/BUILD | 2 +- src/test/python/apache/aurora/executor/common/BUILD | 2 +- src/test/python/apache/aurora/tools/BUILD | 2 +- src/test/python/apache/thermos/BUILD | 2 +- src/test/python/apache/thermos/common/BUILD | 2 +- src/test/python/apache/thermos/config/BUILD | 2 +- src/test/python/apache/thermos/core/BUILD | 8 ++++---- src/test/python/apache/thermos/monitoring/BUILD | 2 +- src/test/python/apache/thermos/observer/BUILD | 2 +- src/test/python/apache/thermos/observer/http/BUILD | 2 +- 22 files changed, 27 insertions(+), 27 deletions(-) Testing Done: Locally green: `./build-support/jenkins/build.sh` Bugs closed: AURORA-1554 Reviewed at https://reviews.apache.org/r/41331/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/bf43f8c0 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/bf43f8c0 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/bf43f8c0 Branch: refs/heads/master Commit: bf43f8c05de5fc5dd64361b83ae31829cab9ffe0 Parents: 3277976 Author: John Sirois <[email protected]> Authored: Mon Dec 14 10:43:44 2015 -0800 Committer: Zameer Manji <[email protected]> Committed: Mon Dec 14 10:43:44 2015 -0800 ---------------------------------------------------------------------- 3rdparty/python/requirements.txt | 2 +- pants.ini | 2 +- src/test/python/BUILD | 2 +- src/test/python/apache/aurora/BUILD | 2 +- src/test/python/apache/aurora/admin/BUILD | 2 +- src/test/python/apache/aurora/client/BUILD | 2 +- src/test/python/apache/aurora/client/api/BUILD | 2 +- src/test/python/apache/aurora/client/cli/BUILD | 2 +- src/test/python/apache/aurora/client/hooks/BUILD | 2 +- src/test/python/apache/aurora/common/BUILD | 2 +- src/test/python/apache/aurora/config/BUILD | 2 +- src/test/python/apache/aurora/executor/BUILD | 6 +++--- src/test/python/apache/aurora/executor/bin/BUILD | 2 +- src/test/python/apache/aurora/executor/common/BUILD | 2 +- src/test/python/apache/aurora/tools/BUILD | 2 +- src/test/python/apache/thermos/BUILD | 2 +- src/test/python/apache/thermos/common/BUILD | 2 +- src/test/python/apache/thermos/config/BUILD | 2 +- src/test/python/apache/thermos/core/BUILD | 8 ++++---- src/test/python/apache/thermos/monitoring/BUILD | 2 +- src/test/python/apache/thermos/observer/BUILD | 2 +- src/test/python/apache/thermos/observer/http/BUILD | 2 +- 22 files changed, 27 insertions(+), 27 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/3rdparty/python/requirements.txt ---------------------------------------------------------------------- diff --git a/3rdparty/python/requirements.txt b/3rdparty/python/requirements.txt index cfef18e..16fa35b 100644 --- a/3rdparty/python/requirements.txt +++ b/3rdparty/python/requirements.txt @@ -18,7 +18,7 @@ CherryPy==3.6.0 mako==0.4.0 mock==1.0.1 mox==0.5.3 -pex==1.1.0 +pex==1.1.1 protobuf==2.6.1 psutil==3.2.2 pystachio==0.8.0 http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/pants.ini ---------------------------------------------------------------------- diff --git a/pants.ini b/pants.ini index 1e19d9a..579d86c 100644 --- a/pants.ini +++ b/pants.ini @@ -12,7 +12,7 @@ # limitations under the License. [DEFAULT] -pants_version: 0.0.59 +pants_version: 0.0.64 plugins: [ 'pantsbuild.pants.contrib.python.checks==%(pants_version)s', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/BUILD b/src/test/python/BUILD index 34d59a5..a607f32 100644 --- a/src/test/python/BUILD +++ b/src/test/python/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ 'src/test/python/apache/aurora:all', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/BUILD b/src/test/python/apache/aurora/BUILD index 7db8b0e..82e944a 100644 --- a/src/test/python/apache/aurora/BUILD +++ b/src/test/python/apache/aurora/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ 'src/test/python/apache/aurora/admin:all', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/admin/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/admin/BUILD b/src/test/python/apache/aurora/admin/BUILD index d401045..ca05c3f 100644 --- a/src/test/python/apache/aurora/admin/BUILD +++ b/src/test/python/apache/aurora/admin/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':admin', ':host_maintenance', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/client/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/client/BUILD b/src/test/python/apache/aurora/client/BUILD index 84c5c84..1ead9ae 100644 --- a/src/test/python/apache/aurora/client/BUILD +++ b/src/test/python/apache/aurora/client/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':base', ':binding_helper', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/client/api/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/client/api/BUILD b/src/test/python/apache/aurora/client/api/BUILD index c375ae9..2756912 100644 --- a/src/test/python/apache/aurora/client/api/BUILD +++ b/src/test/python/apache/aurora/client/api/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':api', ':instance_watcher', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/client/cli/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/client/cli/BUILD b/src/test/python/apache/aurora/client/cli/BUILD index 36fd98a..1b14e8c 100644 --- a/src/test/python/apache/aurora/client/cli/BUILD +++ b/src/test/python/apache/aurora/client/cli/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ ':api', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/client/hooks/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/client/hooks/BUILD b/src/test/python/apache/aurora/client/hooks/BUILD index ae97ebf..8d43e43 100644 --- a/src/test/python/apache/aurora/client/hooks/BUILD +++ b/src/test/python/apache/aurora/client/hooks/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':hooked_api', ':non_hooked_api', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/common/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/common/BUILD b/src/test/python/apache/aurora/common/BUILD index 2556c32..f903c19 100644 --- a/src/test/python/apache/aurora/common/BUILD +++ b/src/test/python/apache/aurora/common/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ ':test_aurora_job_key', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/config/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/config/BUILD b/src/test/python/apache/aurora/config/BUILD index 92bc680..2072422 100644 --- a/src/test/python/apache/aurora/config/BUILD +++ b/src/test/python/apache/aurora/config/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':test_base', ':test_constraint_parsing', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/executor/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/executor/BUILD b/src/test/python/apache/aurora/executor/BUILD index 1c97375..d50948a 100644 --- a/src/test/python/apache/aurora/executor/BUILD +++ b/src/test/python/apache/aurora/executor/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':executor-small', ':executor-large', @@ -20,7 +20,7 @@ python_test_suite(name = 'all', ) -python_test_suite( +target( name = 'executor-small', dependencies = [ ':executor_base', @@ -33,7 +33,7 @@ python_test_suite( ) -python_test_suite( +target( name = 'executor-large', dependencies = [ ':thermos_executor', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/executor/bin/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/executor/bin/BUILD b/src/test/python/apache/aurora/executor/bin/BUILD index c3b538c..ca8b5f7 100644 --- a/src/test/python/apache/aurora/executor/bin/BUILD +++ b/src/test/python/apache/aurora/executor/bin/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ ':thermos_executor_entry_point', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/executor/common/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/executor/common/BUILD b/src/test/python/apache/aurora/executor/common/BUILD index 7dafebf..025947e 100644 --- a/src/test/python/apache/aurora/executor/common/BUILD +++ b/src/test/python/apache/aurora/executor/common/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ ':announcer', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/aurora/tools/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/aurora/tools/BUILD b/src/test/python/apache/aurora/tools/BUILD index e676aff..c6014df 100644 --- a/src/test/python/apache/aurora/tools/BUILD +++ b/src/test/python/apache/aurora/tools/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':thermos_observer_entry_point', ] http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/BUILD b/src/test/python/apache/thermos/BUILD index 821307a..206fc05 100644 --- a/src/test/python/apache/thermos/BUILD +++ b/src/test/python/apache/thermos/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite( +target( name = 'all', dependencies = [ 'src/test/python/apache/thermos/common:all', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/common/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/common/BUILD b/src/test/python/apache/thermos/common/BUILD index 7813dbc..460c82e 100644 --- a/src/test/python/apache/thermos/common/BUILD +++ b/src/test/python/apache/thermos/common/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':test_pathspec', ':test_planner', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/config/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/config/BUILD b/src/test/python/apache/thermos/config/BUILD index cee0f05..f11b9ee 100644 --- a/src/test/python/apache/thermos/config/BUILD +++ b/src/test/python/apache/thermos/config/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':test_schema', ] http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/core/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/core/BUILD b/src/test/python/apache/thermos/core/BUILD index 53cc575..93c6e10 100644 --- a/src/test/python/apache/thermos/core/BUILD +++ b/src/test/python/apache/thermos/core/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':small', ':medium', @@ -20,13 +20,13 @@ python_test_suite(name = 'all', ] ) -python_test_suite(name = 'small', +target(name = 'small', dependencies = [ ':test_process', ] ) -python_test_suite(name = 'medium', +target(name = 'medium', dependencies = [ ':test_ephemerals', ':test_failing_runner', @@ -37,7 +37,7 @@ python_test_suite(name = 'medium', ] ) -python_test_suite(name = 'large', +target(name = 'large', dependencies = [ ':test_angry', ':test_staged_kill' http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/monitoring/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/monitoring/BUILD b/src/test/python/apache/thermos/monitoring/BUILD index b8d6d2f..514dd6c 100644 --- a/src/test/python/apache/thermos/monitoring/BUILD +++ b/src/test/python/apache/thermos/monitoring/BUILD @@ -12,7 +12,7 @@ # limitations under the License. # -python_test_suite(name = 'all', +target(name = 'all', dependencies = [ ':test_disk', ':test_detector', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/observer/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/observer/BUILD b/src/test/python/apache/thermos/observer/BUILD index 34475d2..aec3feb 100644 --- a/src/test/python/apache/thermos/observer/BUILD +++ b/src/test/python/apache/thermos/observer/BUILD @@ -13,7 +13,7 @@ # -python_test_suite( +target( name = 'all', dependencies = [ ':test_detector', http://git-wip-us.apache.org/repos/asf/aurora/blob/bf43f8c0/src/test/python/apache/thermos/observer/http/BUILD ---------------------------------------------------------------------- diff --git a/src/test/python/apache/thermos/observer/http/BUILD b/src/test/python/apache/thermos/observer/http/BUILD index bdead2c..8dc3097 100644 --- a/src/test/python/apache/thermos/observer/http/BUILD +++ b/src/test/python/apache/thermos/observer/http/BUILD @@ -13,7 +13,7 @@ # -python_test_suite( +target( name = 'all', dependencies = [ ':test_file_browser',
