From 3a5192eed8b06edc18834cab0f32de12b23085f0 Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Tue, 19 Apr 2016 22:19:18 +0200 Subject: [PATCH] simplify pep8 testing --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b0c9c9..3e095f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,11 +45,10 @@ install: - source venv/bin/activate - pip install pep8 pytest -#script: -# # pep8 tests -# - pep8 --ignore=E501 update.py -# - pep8 --ignore=E501 test/test.py -# - pep8 --ignore=E501 lib/config.py +script: + # pep8 tests +# - pep8 --ignore E501 update.py + - pep8 --ignore E501,E265 autocmake # # unit tests # - py.test -vv update.py # - py.test -vv test/test.py