Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit 31bf7f9

Browse files
authored
Merge pull request #39 from IceflowRE/use_pycodestyle
Rename pep8 to pycodestyle
2 parents b33e250 + cc8e7c9 commit 31bf7f9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
- run:
1111
command: |
1212
sudo python -m pip install --upgrade pip setuptools wheel
13-
sudo python -m pip install --upgrade pep8 pyflakes coverage tox
13+
sudo python -m pip install --upgrade pycodestyle pyflakes coverage tox
1414
sudo python -m pip install --upgrade virtualenv==12.0.2
1515
- run:
1616
command: |
17-
tox -e py27,py350,pep8,pyflakes,coverage
17+
tox -e py27,py350,pycodestyle,pyflakes,coverage
1818
sudo python setup.py develop
1919
- deploy:
2020
name: Push coverage

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# will need to generate wheels for each Python version that you support.
55
universal=1
66

7-
[pep8]
7+
[pycodestyle]
88
max_line_length = 120

tox.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[tox]
2-
envlist = py27, py350, pep8, pyflakes
2+
envlist = py27, py350, pycodestyle, pyflakes
33

44
[testenv]
55
commands = {envpython} -m unittest discover -s tests -p "*test*"
66
deps = requests
77
usedevelop = true
88

9-
[testenv:pep8]
9+
[testenv:pycodestyle]
1010
deps =
11-
pep8
11+
pycodestyle
1212
commands =
13-
{envpython} -m pep8 src
13+
{envpython} -m pycodestyle src
1414

1515
[testenv:pyflakes]
1616
deps =

0 commit comments

Comments
 (0)