pep8 -> pycodestyle

This commit is contained in:
Roman Zeyde
2018-02-18 11:01:53 +02:00
parent 0e29f9a606
commit 147404645c
2 changed files with 4 additions and 4 deletions

View File

@@ -10,10 +10,10 @@ python:
install:
- pip install .
- pip install pytest>=2.7.3 --upgrade
- pip install coveralls pep8 mock
- pip install coveralls pycodestyle mock
script:
- pep8 amodem/ scripts/
- pycodestyle amodem/ scripts/
- echo "Hello World!" | amodem send -vv -l- -o- | amodem recv -vv -l- -i-
- coverage run --source=amodem --omit="*/__main__.py" -m py.test -vvs

View File

@@ -4,12 +4,12 @@ envlist = py27,py3
deps=
pytest
mock
pep8
pycodestyle
coverage
pylint
six
commands=
pep8 amodem/ scripts/
pycodestyle amodem/ scripts/
pylint --extension-pkg-whitelist=numpy --reports=no amodem --rcfile .pylintrc
coverage run --source amodem/ --omit="*/__main__.py" -m py.test -v
coverage report