upgrade to pydocstyle 1.0.0 (formerly pep257)

This commit is contained in:
jab 2016-02-02 17:31:36 +00:00
parent b7aeb14251
commit f99ac5728f
2 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ tests_require = [
'coverage==4.1.b2',
'hypothesis==2.0.0',
'hypothesis-pytest==0.19.0',
'pep257==0.7.0',
'py==1.4.31',
'pydocstyle==1.0.0',
'pytest==2.8.7',
'pytest-cov==2.2.1'
]

View File

@ -12,5 +12,5 @@ COV="--cov=bidict"
# Don't pass --cov in these cases:
[[ $TRAVIS_PYTHON_VERSION =~ ^(3\.3|3\.4|pypy)$ ]] && COV=""
py.test $COV || FAILED=1
pep257 bidict || FAILED=1
pydocstyle bidict || FAILED=1
exit $FAILED