Skip to content

Commit dd562aa

Browse files
committed
Replace pep257 with pydocstyle
1 parent 9020b8e commit dd562aa

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
- TOXENV=coveralls
99
- TOXENV=pylint
1010
- TOXENV=flake8
11-
- TOXENV=pep257
11+
- TOXENV=pydocstyle
1212
- TOXENV=py26
1313
- TOXENV=py27
1414
- TOXENV=py33

tox.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist=
3-
coveralls, pylint, flake8, pep257, py26, py27, py33, py34, py35, pypy, pypy3
3+
coveralls, pylint, flake8, pydocstyle, py26, py27, py33, py34, py35, pypy, pypy3
44

55
[testenv]
66
whitelist_externals=
@@ -16,7 +16,7 @@ deps=
1616
{[testenv]deps}
1717
coverage
1818
flake8
19-
pep257
19+
pydocstyle
2020
commands=
2121
rm -rf ./domain_models/*.pyc
2222
rm -rf ./tests/*.pyc
@@ -28,8 +28,8 @@ commands=
2828
flake8 --max-complexity=8 domain_models/
2929
flake8 --max-complexity=8 examples/
3030

31-
pep257 domain_models/
32-
pep257 examples/
31+
pydocstyle domain_models/
32+
pydocstyle examples/
3333

3434
[testenv:coveralls]
3535
basepython=python2.7
@@ -58,10 +58,10 @@ commands=
5858
flake8 --max-complexity=8 domain_models/
5959
flake8 --max-complexity=8 examples/
6060

61-
[testenv:pep257]
61+
[testenv:pydocstyle]
6262
basepython=python2.7
6363
deps=
64-
pep257
64+
pydocstyle
6565
commands=
66-
pep257 domain_models/
67-
pep257 examples/
66+
pydocstyle domain_models/
67+
pydocstyle examples/

0 commit comments

Comments
 (0)