Test Boto 2.43.0 .
This commit is contained in:
parent
3b98566f20
commit
38021c6ef5
@ -5,11 +5,11 @@ python:
|
|||||||
- 2.7
|
- 2.7
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- BOTO_VERSION=2.36.0
|
- BOTO_VERSION=2.43.0
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- python: "3.3"
|
- python: "3.3"
|
||||||
env: BOTO_VERSION=2.36.0
|
env: BOTO_VERSION=2.43.0
|
||||||
install:
|
install:
|
||||||
- travis_retry pip install boto==$BOTO_VERSION
|
- travis_retry pip install boto==$BOTO_VERSION
|
||||||
- travis_retry pip install boto3
|
- travis_retry pip install boto3
|
||||||
|
@ -183,7 +183,7 @@ class SQSResponse(BaseResponse):
|
|||||||
message = self.sqs_backend.send_message(queue_name, message_body[0], delay_seconds=delay_seconds)
|
message = self.sqs_backend.send_message(queue_name, message_body[0], delay_seconds=delay_seconds)
|
||||||
message.user_id = message_user_id
|
message.user_id = message_user_id
|
||||||
|
|
||||||
message_attributes = parse_message_attributes(self.querystring, base='SendMessageBatchRequestEntry.{0}.'.format(index), value_namespace='')
|
message_attributes = parse_message_attributes(self.querystring, base='SendMessageBatchRequestEntry.{0}.'.format(index))
|
||||||
if type(message_attributes) == tuple:
|
if type(message_attributes) == tuple:
|
||||||
return message_attributes[0], message_attributes[1]
|
return message_attributes[0], message_attributes[1]
|
||||||
message.message_attributes = message_attributes
|
message.message_attributes = message_attributes
|
||||||
|
@ -23,7 +23,7 @@ def test_lifecycle_create():
|
|||||||
lifecycle.id.should.equal('myid')
|
lifecycle.id.should.equal('myid')
|
||||||
lifecycle.prefix.should.equal('')
|
lifecycle.prefix.should.equal('')
|
||||||
lifecycle.status.should.equal('Enabled')
|
lifecycle.status.should.equal('Enabled')
|
||||||
lifecycle.transition.should.equal(None)
|
list(lifecycle.transition).should.equal([])
|
||||||
|
|
||||||
|
|
||||||
@mock_s3
|
@mock_s3
|
||||||
|
Loading…
Reference in New Issue
Block a user