File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ matrix:
1212 - python : 2.7
1313 env : TOXENV=py27-functional
1414 - python : 2.7
15- env : TOXENV=update-pep8
15+ env : TOXENV=update-pycodestyle
1616 - python : 2.7
1717 env : TOXENV=docs
1818 - python : 2.7
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ if [[ -z ${ENV} ]]; then
4949 trap " deactivate" EXIT SIGINT
5050
5151 echo " --- Updating tools"
52- pip install --upgrade pep8
52+ pip install --upgrade pycodestyle
5353 pip install --upgrade autopep8
5454 pip install --upgrade isort
5555fi
@@ -70,10 +70,10 @@ for SOURCE in $SOURCES; do
7070 isort -y $SOURCE
7171done
7272
73- echo " --- check pep8 (all need to be fixed manually)"
73+ echo " --- check pycodestyle (all need to be fixed manually)"
7474set +o errexit
7575for SOURCE in $SOURCES ; do
76- pep8 $SOURCE
76+ pycodestyle $SOURCE
7777done
7878
7979if [[ ! -z ${ENV} ]]; then
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ mock>=2.0.0
88sphinx>=1.2.1,!=1.3b1,<1.4 # BSD
99recommonmark
1010codecov>=1.4.0
11- pep8
11+ pycodestyle
1212autopep8
1313isort
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ commands =
1515commands =
1616 python setup.py build_sphinx
1717
18- [testenv:update-pep8 ]
18+ [testenv:update-pycodestyle ]
1919commands =
20- {toxinidir}/scripts/update-pep8 .sh
20+ {toxinidir}/scripts/update-pycodestyle .sh
2121
2222[testenv:py27-functional]
2323commands =
You can’t perform that action at this time.
0 commit comments