Update travis, fix docstrings

This commit is contained in:
Gavin M. Roy 2016-03-04 09:35:43 -05:00
parent 06ea813b8f
commit 3e909eb2ba
3 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
sudo: reuired sudo: required
services: services:
- docker - docker
language: python language: python

View file

@ -67,7 +67,7 @@ set -e
mkdir -p build mkdir -p build
if test "$1" == 'shellinit' if test "$1" = 'shellinit'
then then
# just build the environment file from docker containers # just build the environment file from docker containers
build_env_file build/test-environment build_env_file build/test-environment

View file

@ -734,7 +734,7 @@ class DynamoDB(object):
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded` :exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException` :exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/ .. _UpdateItem: http://docs.aws.amazon.com/amazondynamodb/
latest/APIReference/API_UpdateItem.html latest/APIReference/API_UpdateItem.html
""" """
@ -890,7 +890,7 @@ class DynamoDB(object):
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded` :exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException` :exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/ .. _DeleteItem: http://docs.aws.amazon.com/amazondynamodb/
latest/APIReference/API_DeleteItem.html latest/APIReference/API_DeleteItem.html
""" """
@ -916,7 +916,7 @@ class DynamoDB(object):
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded` :exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException` :exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/ .. _BatchGetItem: http://docs.aws.amazon.com/amazondynamodb/
latest/APIReference/API_BatchGetItem.html latest/APIReference/API_BatchGetItem.html
""" """
@ -942,7 +942,7 @@ class DynamoDB(object):
:exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded` :exc:`~sprockets.clients.dynamodb.exceptions.ThroughputExceeded`
:exc:`~sprockets.clients.dynamodb.exceptions.ValidationException` :exc:`~sprockets.clients.dynamodb.exceptions.ValidationException`
.. _GetItem: http://docs.aws.amazon.com/amazondynamodb/ .. _BatchWriteItem: http://docs.aws.amazon.com/amazondynamodb/
latest/APIReference/API_BatchWriteItem.html latest/APIReference/API_BatchWriteItem.html
""" """