Skip to content

Commit b89bda9

Browse files
Replace pycodestyle with flake8 on circleci
1 parent 6d84dae commit b89bda9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- checkout
1212
- run: pip install --user .
13-
- run: sudo pip install coverage pylint==1.9.3 pycodestyle
13+
- run: sudo pip install coverage pylint==1.9.3 flake8
1414
- run: make test
1515
- persist_to_workspace:
1616
root: .
@@ -19,7 +19,7 @@ jobs:
1919
- store_artifacts:
2020
path: pylint.out
2121
- store_artifacts:
22-
path: pycodestyle.out
22+
path: flake8.out
2323

2424
coverage:
2525
docker:
@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- checkout
5353
- run: pip install --user .
54-
- run: sudo pip install setuptools coverage pylint==1.9.3 pycodestyle flake8
54+
- run: sudo pip install setuptools coverage pylint==1.9.3 flake8
5555
- run:
5656
name: Linting with Flake8
5757
command: |
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- checkout
6767
- run: pip install --user .
68-
- run: sudo pip install coverage pylint==1.9.3 pycodestyle flake8
68+
- run: sudo pip install coverage pylint==1.9.3 flake8
6969
- run:
7070
name: Linting with Flake8
7171
command: |

0 commit comments

Comments
 (0)