Skip to content

Commit

Permalink
Remove pycodestyle since it's run by flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
stoivo committed Jul 7, 2019
1 parent 60f2655 commit ca356a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,11 @@ before_install:
install:
- sh travis.sh bootstrap
- sh travis.sh install_package_control
- pip3 install python-coveralls pycodestyle flake8;
- pip3 install python-coveralls flake8;

script:
- sh travis.sh run_tests --coverage
- sh travis.sh run_syntax_tests
- pycodestyle --statistics --count
- flake8 cmdbox

after_success:
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ install:
- ps: .\appveyor.ps1 "install_package_control" -verbose
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- ps: python -m pip install --upgrade pip
- ps: pip install pycodestyle flake8
- ps: pip install flake8

build: off

test_script:
- ps: .\appveyor.ps1 "run_tests" -verbose
- ps: .\appveyor.ps1 "run_syntax_tests" -verbose
- ps: pycodestyle --statistics --count
- ps: flake8 cmdbox
9 changes: 0 additions & 9 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
[pycodestyle]
count = False
ignore = E401, E731, W503, W504
max-line-length = 120
exclude =
tests/mockito,
tests/parameterized/,
.svn,CVS,.bzr,.hg,.git

[flake8]
max-line-length = 120
ignore =
Expand Down

0 comments on commit ca356a1

Please sign in to comment.