You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2016/04/18 12:25:00 UTC

[01/12] libcloud git commit: Add py3.5-lxml to tox.ini

Repository: libcloud
Updated Branches:
  refs/heads/trunk 30418de14 -> 96f704333


Add py3.5-lxml to tox.ini

So I can construct a bytes vs str test case that fails reproducibly under Python 3. Turned out there were already several so no need:

ERROR: test_create_group_location_does_not_exist (libcloud.test.compute.test_abiquo.AbiquoNodeDriverTest)
...(not all 595 errors shown)
ERROR: test_update_target (libcloud.test.backup.test_dimensiondata.DimensionDataTests)
ERROR: test_update_target_DEFAULT (libcloud.test.backup.test_dimensiondata.DimensionDataTests)
ERROR: test_update_target_STR (libcloud.test.backup.test_dimensiondata.DimensionDataTests)
FAIL: test_wait_until_running_running_multiple_nodes_have_same_uuid (libcloud.test.compute.test_deployment.DeploymentTests)
FAIL: test_wait_until_running_running_node_missing_from_list_nodes (libcloud.test.compute.test_deployment.DeploymentTests)
FAIL: test_wait_until_running_timeout (libcloud.test.compute.test_deployment.DeploymentTests)
FAIL: test_ex_set_control_access (libcloud.test.compute.test_vcloud.VCloud_1_5_Tests)
FAILED (failures=4, errors=595, skipped=14)

Others can let me know if it's a worthwhile trade off to add lxml testing against all environments.


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

Branch: refs/heads/trunk
Commit: 48a02a628a05424ce88affe88f8b52203f8f8adb
Parents: 30418de
Author: Peter Schmidt <pe...@peterjs.com>
Authored: Mon Apr 18 11:44:24 2016 +1000
Committer: Peter Schmidt <pe...@peterjs.com>
Committed: Mon Apr 18 11:48:38 2016 +1000

----------------------------------------------------------------------
 tox.ini | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/48a02a62/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index c08c4c2..2ebdd75 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},lint
+envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},py3.5-lxml,lint
 
 [testenv]
 deps =
@@ -21,6 +21,10 @@ basepython =
     py3.5: python3.5
 whitelist_externals = cp
 
+[testenv:py3.5-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+
 [testenv:docs]
 deps = sphinx
        pysphere


[09/12] libcloud git commit: TOX_ENV -> ENV.

Posted by to...@apache.org.
TOX_ENV -> ENV.


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

Branch: refs/heads/trunk
Commit: 5b6ed2699f636d66989b29d4c112e6192e1faeaa
Parents: 783c18b
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:47:16 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:47:16 2016 +0200

----------------------------------------------------------------------
 .travis.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/5b6ed269/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index f11cea0..24ebb99 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,14 +60,14 @@ matrix:
             - gcc
   # For now allow failures of all the builds which use lxml
   allow_failures:
-    - env: TOX_ENV=py2.6-lxml
-    - env: TOX_ENV=py2.7-lxml
-    - env: TOX_ENV=pypypy-lxml
-    - env: TOX_ENV=pypypy3-lxml
-    - env: TOX_ENV=3.2-lxml
-    - env: TOX_ENV=3.3-lxml
-    - env: TOX_ENV=3.4-lxml
-    - env: TOX_ENV=3.5-lxml
+    - env: ENV=py2.6-lxml
+    - env: ENV=py2.7-lxml
+    - env: ENV=pypypy-lxml
+    - env: ENV=pypypy3-lxml
+    - env: ENV=3.2-lxml
+    - env: ENV=3.3-lxml
+    - env: ENV=3.4-lxml
+    - env: ENV=3.5-lxml
       # Trigger ReadTheDocs build
       after_success: ./contrib/trigger_rtd_build.py 8284
 


[11/12] libcloud git commit: Add missing 3.2 builder.

Posted by to...@apache.org.
Add missing 3.2 builder.


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

Branch: refs/heads/trunk
Commit: cce112234924fbd565b5fe642bc1e7767664c79f
Parents: 939e4f1
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:57:25 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:57:25 2016 +0200

----------------------------------------------------------------------
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/cce11223/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 9e1c5a9..339489f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -65,6 +65,7 @@ matrix:
     - env: ENV=pypy-lxml
     - env: ENV=pypy3-lxml
     - env: ENV=py3.2-lxml
+    - env: ENV=3.2-lxml
     - env: ENV=3.3-lxml
     - env: ENV=3.4-lxml
     - env: ENV=3.5-lxml


[03/12] libcloud git commit: Actually spell out using both builtin xml and lxml

Posted by to...@apache.org.
Actually spell out using both builtin xml and lxml

Avoids my premature optimisation of assuming it worked for Python 2.x, as I find "FAILED (failures=1, errors=52, skipped=14)" under Python 2.7

Not actually tested against pypy (pypypy? or pypypy3?)

Looks like a design decision about whether lxml should be:
a) officially supported
b) dropped entirely
c) replaced with alternatives like defusedxml
will be required, unless someone can suggest a workaround.

(libcloud) pzrq@Peters-Mac-mini:~/Projects/libcloud$ tox
GLOB sdist-make: /Users/pzrq/Projects/libcloud/setup.py
py2.5 create: /Users/pzrq/Projects/libcloud/.tox/py2.5
ERROR: InterpreterNotFound: python2.5
py2.6 inst-nodeps: /Users/pzrq/Projects/libcloud/.tox/dist/apache-libcloud-1.0.0rc2.zip
py2.6 installed: DEPRECATION: Python 2.6 is no longer supported by the Python core team, please upgrade your Python. A future version of pip will drop support for Python 2.6,apache-libcloud==1.0.0rc2,argparse==1.4.0,backports.ssl-match-hostname==3.5.0.1,ecdsa==0.13,flake8==2.5.4,linecache2==1.0.0,lockfile==0.12.2,mccabe==0.4.0,mock==1.0.1,paramiko==1.16.0,pep8==1.7.0,pycrypto==2.6.1,pyflakes==1.0.0,six==1.10.0,traceback2==1.4.0,unittest2==1.1.0
py2.6 runtests: PYTHONHASHSEED='1836126779'
py2.6 runtests: commands[0] | cp libcloud/test/secrets.py-dist libcloud/test/secrets.py
py2.6 runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5442 tests in 65.366s

OK
py2.7 runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5442 tests in 39.533s

OK
pypypy create: /Users/pzrq/Projects/libcloud/.tox/pypypy
ERROR: InterpreterNotFound: pypy
pypypy3 create: /Users/pzrq/Projects/libcloud/.tox/pypypy3
ERROR: InterpreterNotFound: pypy3
py3.2 create: /Users/pzrq/Projects/libcloud/.tox/py3.2
ERROR: InterpreterNotFound: python3.2
py3.3 create: /Users/pzrq/Projects/libcloud/.tox/py3.3
ERROR: InterpreterNotFound: python3.3
...
py3.4 runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5442 tests in 27.719s

OK (skipped=14)
py3.5 runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5442 tests in 27.423s

OK (skipped=14)
py2.5-lxml create: /Users/pzrq/Projects/libcloud/.tox/py2.5-lxml
ERROR: InterpreterNotFound: python2.5
...
py2.6-lxml runtests: commands[1] | python setup.py test
/Users/pzrq/Projects/libcloud/.tox/py2.6-lxml/lib/python2.6/site-packages/setuptools/dist.py:285: UserWarning: Normalizing '1.0.0-rc2' to '1.0.0rc2'
  normalized_version,
running test
Python version: 2.6.9 (unknown, Oct 23 2015, 19:19:20)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)]
Missing "unittest2" library. unittest2 is library is needed to run the tests. You can install it using pip: pip install unittest2
ERROR: InvocationError: '/Users/pzrq/Projects/libcloud/.tox/py2.6-lxml/bin/python setup.py test'
...
py2.7-lxml runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5424 tests in 27.047s

FAILED (failures=1, errors=52, skipped=14)
ERROR: InvocationError: '/Users/pzrq/Projects/libcloud/.tox/py2.7-lxml/bin/python setup.py test'
pypypy-lxml create: /Users/pzrq/Projects/libcloud/.tox/pypypy-lxml
ERROR: InterpreterNotFound: pypy
pypypy3-lxml create: /Users/pzrq/Projects/libcloud/.tox/pypypy3-lxml
ERROR: InterpreterNotFound: pypy3
py3.2-lxml create: /Users/pzrq/Projects/libcloud/.tox/py3.2-lxml
ERROR: InterpreterNotFound: python3.2
py3.3-lxml create: /Users/pzrq/Projects/libcloud/.tox/py3.3-lxml
ERROR: InterpreterNotFound: python3.3
...
py3.4-lxml runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5424 tests in 23.300s

FAILED (failures=4, errors=595, skipped=14)
ERROR: InvocationError: '/Users/pzrq/Projects/libcloud/.tox/py3.4-lxml/bin/python setup.py test'
...
py3.5-lxml runtests: commands[1] | python setup.py test
...
----------------------------------------------------------------------
Ran 5424 tests in 23.433s

FAILED (failures=4, errors=595, skipped=14)
ERROR: InvocationError: '/Users/pzrq/Projects/libcloud/.tox/py3.5-lxml/bin/python setup.py test'
...
___________________________________ summary ____________________________________
ERROR:   py2.5: InterpreterNotFound: python2.5
  py2.6: commands succeeded
  py2.7: commands succeeded
ERROR:   pypypy: InterpreterNotFound: pypy
ERROR:   pypypy3: InterpreterNotFound: pypy3
ERROR:   py3.2: InterpreterNotFound: python3.2
ERROR:   py3.3: InterpreterNotFound: python3.3
  py3.4: commands succeeded
  py3.5: commands succeeded
ERROR:   py2.5-lxml: InterpreterNotFound: python2.5
ERROR:   py2.6-lxml: commands failed
ERROR:   py2.7-lxml: commands failed
ERROR:   pypypy-lxml: InterpreterNotFound: pypy
ERROR:   pypypy3-lxml: InterpreterNotFound: pypy3
ERROR:   py3.2-lxml: InterpreterNotFound: python3.2
ERROR:   py3.3-lxml: InterpreterNotFound: python3.3
ERROR:   py3.4-lxml: commands failed
ERROR:   py3.5-lxml: commands failed
  lint: commands succeeded
(libcloud) pzrq@Peters-Mac-mini:~/Projects/libcloud$


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

Branch: refs/heads/trunk
Commit: 81c7035a7af969221b42579971b4d87de4626a12
Parents: 8143e79
Author: Peter Schmidt <pe...@peterjs.com>
Authored: Mon Apr 18 17:00:53 2016 +1000
Committer: Peter Schmidt <pe...@peterjs.com>
Committed: Mon Apr 18 17:26:43 2016 +1000

----------------------------------------------------------------------
 tox.ini | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/81c7035a/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index 12de851..fa48127 100644
--- a/tox.ini
+++ b/tox.ini
@@ -21,7 +21,34 @@ basepython =
     py3.5: python3.5
 whitelist_externals = cp
 
-[testenv:py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml]
+# Explicitly spell out all environments to test with builtin xml and lxml,
+# as it seems I can't use the following:
+# [testenv:py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml]
+[testenv:py2.5-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py2.6-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py2.7-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:pypypy-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:pypypy3-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py3.2-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py3.3-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py3.4-lxml]
+deps = -r{toxinidir}/requirements-tests.txt
+       lxml
+[testenv:py3.5-lxml]
 deps = -r{toxinidir}/requirements-tests.txt
        lxml
 


[06/12] libcloud git commit: Allow failures for lxml builders.

Posted by to...@apache.org.
Allow failures for lxml builders.


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

Branch: refs/heads/trunk
Commit: 3bd16fd0c967ba5cf9072dff8f7ea41635411dcc
Parents: a552d71
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:07:16 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:07:16 2016 +0200

----------------------------------------------------------------------
 .travis.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/3bd16fd0/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index afed5b9..bc1e657 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,6 +58,16 @@ matrix:
           packages:
             - graphviz
             - gcc
+  # For now allow failures of all the builds which use lxml
+  allow_failures:
+    - env: TASK=py2.6-lxml
+    - env: TASK=py2.7-lxml
+    - env: TASK=pypypy-lxml
+    - env: TASK=pypypy3-lxml
+    - env: TASK=3.2-lxml
+    - env: TASK=3.3-lxml
+    - env: TASK=3.4-lxml
+    - env: TASK=3.5-lxml
       # Trigger ReadTheDocs build
       after_success: ./contrib/trigger_rtd_build.py 8284
 


[05/12] libcloud git commit: Pad out the rest of Travis with lxml

Posted by to...@apache.org.
Pad out the rest of Travis with lxml

Hopefully makes this easier to review and decide one way or another what to do.


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

Branch: refs/heads/trunk
Commit: a552d711e1c07eefea4923e59d814651ddb1bb3d
Parents: 81c7035
Author: Peter Schmidt <pe...@peterjs.com>
Authored: Mon Apr 18 17:41:22 2016 +1000
Committer: Peter Schmidt <pe...@peterjs.com>
Committed: Mon Apr 18 17:41:44 2016 +1000

----------------------------------------------------------------------
 .travis.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/a552d711/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index b388634..afed5b9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,9 +22,30 @@ addons:
 matrix:
   fast_finish: true
   include:
+    - env: ENV=2.6-lxml
+      python: 2.6
+      before_script: TOX_ENV=py2.6-lxml
+    - env: ENV=2.7-lxml
+      python: 2.7
+      before_script: TOX_ENV=py2.7-lxml
+    - env: ENV=3.2-lxml
+      python: 3.2
+      before_script: TOX_ENV=py3.2-lxml
+    - env: ENV=3.3-lxml
+      python: 3.3
+      before_script: TOX_ENV=py3.3-lxml
+    - env: ENV=3.4-lxml
+      python: 3.4
+      before_script: TOX_ENV=py3.4-lxml
     - env: ENV=3.5-lxml
       python: 3.5
       before_script: TOX_ENV=py3.5-lxml
+    - env: ENV=pypy-lxml
+      python: pypy
+      before_script: TOX_ENV=pypypy-lxml
+    - env: ENV=pypy3-lxml
+      python: pypy3
+      before_script: TOX_ENV=pypypy3-lxml
     - env: ENV=lint
       python: 2.7
       before_script: TOX_ENV=lint


[07/12] libcloud git commit: Update tox.ini, add missing dependencies.

Posted by to...@apache.org.
Update tox.ini, add missing dependencies.


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

Branch: refs/heads/trunk
Commit: f66b81348430bd5f59d136df1ea353688c5607b5
Parents: 3bd16fd
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:08:52 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:08:52 2016 +0200

----------------------------------------------------------------------
 tox.ini | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/f66b8134/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index fa48127..76a4fac 100644
--- a/tox.ini
+++ b/tox.ini
@@ -26,9 +26,13 @@ whitelist_externals = cp
 # [testenv:py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml]
 [testenv:py2.5-lxml]
 deps = -r{toxinidir}/requirements-tests.txt
+       unittest2
+       paramiko
        lxml
 [testenv:py2.6-lxml]
 deps = -r{toxinidir}/requirements-tests.txt
+       unittest2
+       paramiko
        lxml
 [testenv:py2.7-lxml]
 deps = -r{toxinidir}/requirements-tests.txt


[12/12] libcloud git commit: Don't run lxml targets locally by default when using tox command.

Posted by to...@apache.org.
Don't run lxml targets locally by default when using tox command.


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

Branch: refs/heads/trunk
Commit: 96f7043336e1452799a0caf78ebe31095065e30e
Parents: cce1122
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 12:13:32 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 12:13:32 2016 +0200

----------------------------------------------------------------------
 tox.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/96f70433/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index 76a4fac..e7cb5a3 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml,lint
+envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},lint
 
 [testenv]
 deps =


[08/12] libcloud git commit: TASK -> TOX_ENV.

Posted by to...@apache.org.
TASK -> TOX_ENV.


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

Branch: refs/heads/trunk
Commit: 783c18b565f08a13e53bd2d929ef1435b4d9b43f
Parents: f66b813
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:40:39 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:40:39 2016 +0200

----------------------------------------------------------------------
 .travis.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/783c18b5/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index bc1e657..f11cea0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,14 +60,14 @@ matrix:
             - gcc
   # For now allow failures of all the builds which use lxml
   allow_failures:
-    - env: TASK=py2.6-lxml
-    - env: TASK=py2.7-lxml
-    - env: TASK=pypypy-lxml
-    - env: TASK=pypypy3-lxml
-    - env: TASK=3.2-lxml
-    - env: TASK=3.3-lxml
-    - env: TASK=3.4-lxml
-    - env: TASK=3.5-lxml
+    - env: TOX_ENV=py2.6-lxml
+    - env: TOX_ENV=py2.7-lxml
+    - env: TOX_ENV=pypypy-lxml
+    - env: TOX_ENV=pypypy3-lxml
+    - env: TOX_ENV=3.2-lxml
+    - env: TOX_ENV=3.3-lxml
+    - env: TOX_ENV=3.4-lxml
+    - env: TOX_ENV=3.5-lxml
       # Trigger ReadTheDocs build
       after_success: ./contrib/trigger_rtd_build.py 8284
 


[10/12] libcloud git commit: Fix task names.

Posted by to...@apache.org.
Fix task names.


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

Branch: refs/heads/trunk
Commit: 939e4f18fd3b9b02f4b2389c8c6dfd366ac47e21
Parents: 5b6ed26
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Mon Apr 18 11:54:05 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Mon Apr 18 11:54:05 2016 +0200

----------------------------------------------------------------------
 .travis.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/939e4f18/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 24ebb99..9e1c5a9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -60,11 +60,11 @@ matrix:
             - gcc
   # For now allow failures of all the builds which use lxml
   allow_failures:
-    - env: ENV=py2.6-lxml
-    - env: ENV=py2.7-lxml
-    - env: ENV=pypypy-lxml
-    - env: ENV=pypypy3-lxml
-    - env: ENV=3.2-lxml
+    - env: ENV=2.6-lxml
+    - env: ENV=2.7-lxml
+    - env: ENV=pypy-lxml
+    - env: ENV=pypy3-lxml
+    - env: ENV=py3.2-lxml
     - env: ENV=3.3-lxml
     - env: ENV=3.4-lxml
     - env: ENV=3.5-lxml


[04/12] libcloud git commit: Try to create lxml versions of all tox envs

Posted by to...@apache.org.
Try to create lxml versions of all tox envs


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

Branch: refs/heads/trunk
Commit: 8143e793bb6af1526c1d74ea7441ba612e82d048
Parents: 99b420d
Author: Peter Schmidt <pe...@peterjs.com>
Authored: Mon Apr 18 16:39:50 2016 +1000
Committer: Peter Schmidt <pe...@peterjs.com>
Committed: Mon Apr 18 17:26:43 2016 +1000

----------------------------------------------------------------------
 tox.ini | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/8143e793/tox.ini
----------------------------------------------------------------------
diff --git a/tox.ini b/tox.ini
index 2ebdd75..12de851 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},py3.5-lxml,lint
+envlist = py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5},py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml,lint
 
 [testenv]
 deps =
@@ -21,7 +21,7 @@ basepython =
     py3.5: python3.5
 whitelist_externals = cp
 
-[testenv:py3.5-lxml]
+[testenv:py{2.5,2.6,2.7,pypy,pypy3,3.2,3.3,3.4,3.5}-lxml]
 deps = -r{toxinidir}/requirements-tests.txt
        lxml
 


[02/12] libcloud git commit: Add Python 3.5-lxml to travis

Posted by to...@apache.org.
Add Python 3.5-lxml to travis

Worked first time :)


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

Branch: refs/heads/trunk
Commit: 99b420d01bd83b278860bb473972bbe96ff3cdbe
Parents: 48a02a6
Author: Peter Schmidt <pe...@peterjs.com>
Authored: Mon Apr 18 12:07:52 2016 +1000
Committer: Peter Schmidt <pe...@peterjs.com>
Committed: Mon Apr 18 12:43:00 2016 +1000

----------------------------------------------------------------------
 .travis.yml | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/99b420d0/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index dfb6688..b388634 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,6 +22,9 @@ addons:
 matrix:
   fast_finish: true
   include:
+    - env: ENV=3.5-lxml
+      python: 3.5
+      before_script: TOX_ENV=py3.5-lxml
     - env: ENV=lint
       python: 2.7
       before_script: TOX_ENV=lint