Skip boto tests which are pegging CPU and eating all available RAM.

This commit is contained in:
Pedro Algarvio 2016-03-17 01:01:24 +00:00
parent 2fcc916c6a
commit cb196803fd
No known key found for this signature in database
GPG Key ID: BB36BF6584A298FF
2 changed files with 4 additions and 2 deletions

View File

@ -98,6 +98,7 @@ if _has_required_boto():
ruleDisabled=True)
@skipIf(True, 'These tests are pegging the CPU and eating all available RAM')
class BotoIoTTestCaseBase(TestCase):
conn = None
@ -118,6 +119,7 @@ class BotoIoTTestCaseMixin(object):
pass
@skipIf(True, 'These tests are pegging the CPU and eating all available RAM')
@skipIf(HAS_BOTO is False, 'The boto module must be installed.')
@skipIf(_has_required_boto() is False, 'The boto3 module must be greater than'
' or equal to version {0}'

View File

@ -129,7 +129,7 @@ class TempZipFile(object):
class BotoLambdaTestCaseMixin(object):
pass
@skipIf(True, 'These tests are pegging the CPU and eating all available RAM')
@skipIf(HAS_BOTO is False, 'The boto module must be installed.')
@skipIf(_has_required_boto() is False, 'The boto3 module must be greater than'
' or equal to version {0}'
@ -532,7 +532,7 @@ class BotoLambdaAliasTestCase(BotoLambdaTestCaseBase, BotoLambdaTestCaseMixin):
**conn_parameters)
self.assertEqual(result.get('error', {}).get('message'), error_message.format('update_alias'))
@skipIf(True, 'These tests are pegging the CPU and eating all available RAM')
@skipIf(HAS_BOTO is False, 'The boto module must be installed.')
@skipIf(_has_required_boto() is False, 'The boto3 module must be greater than'
' or equal to version {0}'