From 13cd6be2d15911765cf336fa560215922090e016 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sun, 3 Dec 2017 21:45:00 +0200 Subject: [PATCH] travis: pep8 -> pycodestyle --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01ea2be..6458abd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,13 +13,13 @@ cache: before_install: - pip install -U pip wheel - pip install -U setuptools - - pip install -U pylint coverage pep8 pydocstyle + - pip install -U pylint coverage pycodestyle pydocstyle install: - - pip install -e . + - pip install -U -e . script: - - pep8 libagent + - pycodestyle libagent - pylint --reports=no --rcfile .pylintrc libagent - pydocstyle libagent - coverage run --source libagent/ -m py.test -v