Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[requires.io] dependency update on master branch #47

Merged
merged 4 commits into from
Jul 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# test runs requirements (versions we'll be testing against) - automatically updated by requires.io
coverage==4.4.1 # pytest-cov
pylama==7.3.3
pylama==7.4.1
pyflakes==1.5.0
pydocstyle==2.0.0
pycodestyle==2.3.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def read(fname):

test_requires = [
'pytest-cov==2.5.1',
'pytest-xdist==1.17.1',
'pytest-xdist==1.18.0',
]

extras_require = {
Expand Down
4 changes: 2 additions & 2 deletions src/pytest_dynamodb/port.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ class InvalidPortsDefinition(ValueError):
"""Exception raised if ports definition is not a valid string."""

def __init__(self, ports):
"""Constructor for InvalidPortsDefinition exception."""
"""Construct InvalidPortsDefinition exception."""
self.ports = ports

def __str__(self):
"""String representation."""
"""Return string representation."""
return (
'Unknown format of ports: {0}.\n'
'You should provide a ports range "[(4000,5000)]"'
Expand Down