From 04c541abfff0c19b5cc228e60df65b847cb8a778 Mon Sep 17 00:00:00 2001 From: Julien Rottenberg Date: Sun, 22 Jul 2018 21:11:58 -0700 Subject: [PATCH] pycodestyle replace pep8 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 13d126f..d4e1259 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,8 @@ python: - "2.7" # command to install dependencies install: - - pip install pylint pep8 + - pip install pylint pycodestyle # command to run tests script: - pylint --rcfile pylintrc check_puppet_nodes.py - - pep8 check_puppet_nodes.py + - pycodestyle check_puppet_nodes.py