bdf3549563
pep8 has been renamed to pycodestyle and will be removed in a future release. This patch replaces pep8 by pycodestyle and adding some settings for pycodestyle. Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
26 lines
454 B
YAML
26 lines
454 B
YAML
language: python
|
|
python:
|
|
- "3.5" # Python 3.5 still needs to be installed on Travis-CI
|
|
|
|
env:
|
|
- TOX_ENV=py27
|
|
- TOX_ENV=py34
|
|
- TOX_ENV=py35
|
|
- TOX_ENV=pypy26
|
|
- TOX_ENV=pycodestyle
|
|
|
|
services:
|
|
- docker
|
|
|
|
sudo: required # Required to enable Docker service
|
|
|
|
install:
|
|
- pip install tox coveralls
|
|
- bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh
|
|
|
|
script:
|
|
- NOSE_VERBOSE=0 tox -e $TOX_ENV
|
|
|
|
after_success:
|
|
- coveralls
|