You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2015/12/28 11:24:10 UTC

[1/3] libcloud git commit: Update tests for ec2 driver to match new list_sizes result.

Repository: libcloud
Updated Branches:
  refs/heads/trunk 286cff194 -> 60b5661c0


Update tests for ec2 driver to match new list_sizes result.


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

Branch: refs/heads/trunk
Commit: 9f85955a0ec0e9a1af1a0dd0587b21ffa3478cc2
Parents: a9822d4
Author: anthony-shaw <an...@gmail.com>
Authored: Mon Dec 28 21:09:34 2015 +1100
Committer: anthony-shaw <an...@gmail.com>
Committed: Mon Dec 28 21:09:34 2015 +1100

----------------------------------------------------------------------
 libcloud/test/compute/test_ec2.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/9f85955a/libcloud/test/compute/test_ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/test/compute/test_ec2.py b/libcloud/test/compute/test_ec2.py
index 79b5dc5..b800066 100644
--- a/libcloud/test/compute/test_ec2.py
+++ b/libcloud/test/compute/test_ec2.py
@@ -415,20 +415,20 @@ class EC2Tests(LibcloudTestCase, TestCaseMixin):
             self.assertTrue('m2.4xlarge' in ids)
 
             if region_name == 'us-east-1':
-                self.assertEqual(len(sizes), 52)
+                self.assertEqual(len(sizes), 53)
                 self.assertTrue('cg1.4xlarge' in ids)
                 self.assertTrue('cc2.8xlarge' in ids)
                 self.assertTrue('cr1.8xlarge' in ids)
             elif region_name == 'us-west-1':
-                self.assertEqual(len(sizes), 44)
+                self.assertEqual(len(sizes), 45)
             if region_name == 'us-west-2':
                 self.assertEqual(len(sizes), 41)
             elif region_name == 'ap-southeast-1':
-                self.assertEqual(len(sizes), 42)
+                self.assertEqual(len(sizes), 43)
             elif region_name == 'ap-southeast-2':
                 self.assertEqual(len(sizes), 47)
             elif region_name == 'eu-west-1':
-                self.assertEqual(len(sizes), 50)
+                self.assertEqual(len(sizes), 51)
 
         self.driver.region_name = region_old
 


[2/3] libcloud git commit: Merge branch 'trunk' of https://git-wip-us.apache.org/repos/asf/libcloud into trunk

Posted by an...@apache.org.
Merge branch 'trunk' of https://git-wip-us.apache.org/repos/asf/libcloud into trunk


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

Branch: refs/heads/trunk
Commit: adfaacfb2b39cec98a8ac2c57ce3ec663922d13c
Parents: 9f85955 286cff1
Author: anthony-shaw <an...@gmail.com>
Authored: Mon Dec 28 21:09:54 2015 +1100
Committer: anthony-shaw <an...@gmail.com>
Committed: Mon Dec 28 21:09:54 2015 +1100

----------------------------------------------------------------------
 .travis.yml                                     |  6 ++++++
 libcloud/test/dns/fixtures/cloudflare/nul.json  | 10 ----------
 libcloud/test/dns/fixtures/cloudflare/nul_.json | 10 ++++++++++
 libcloud/test/dns/test_cloudflare.py            |  3 ++-
 4 files changed, 18 insertions(+), 11 deletions(-)
----------------------------------------------------------------------



[3/3] libcloud git commit: Removed the t2.nano instance types from eu-central and ap-southeast-2 as they are not available yet.

Posted by an...@apache.org.
Removed the t2.nano instance types from eu-central and ap-southeast-2 as they are not available yet.


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

Branch: refs/heads/trunk
Commit: 60b5661c0024a89ab2db526572b5f023a6698e57
Parents: adfaacf
Author: anthony-shaw <an...@gmail.com>
Authored: Mon Dec 28 21:18:44 2015 +1100
Committer: anthony-shaw <an...@gmail.com>
Committed: Mon Dec 28 21:18:44 2015 +1100

----------------------------------------------------------------------
 libcloud/compute/drivers/ec2.py | 2 --
 libcloud/data/pricing.json      | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/60b5661c/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index d03b3f4..e9a32c2 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -920,7 +920,6 @@ REGION_DETAILS = {
             'r3.2xlarge',
             'r3.4xlarge',
             'r3.8xlarge',
-            't2.nano',
             't2.micro',
             't2.small',
             't2.medium',
@@ -1116,7 +1115,6 @@ REGION_DETAILS = {
             'r3.2xlarge',
             'r3.4xlarge',
             'r3.8xlarge',
-            't2.nano',
             't2.micro',
             't2.small',
             't2.medium',

http://git-wip-us.apache.org/repos/asf/libcloud/blob/60b5661c/libcloud/data/pricing.json
----------------------------------------------------------------------
diff --git a/libcloud/data/pricing.json b/libcloud/data/pricing.json
index 4723fb3..a443207 100644
--- a/libcloud/data/pricing.json
+++ b/libcloud/data/pricing.json
@@ -1030,5 +1030,5 @@
         }
     },
     "storage": {},
-    "updated": 1450688351
+    "updated": 1451297707
 }
\ No newline at end of file