From 6a72ec9bc9ed5f984ef5fe97ad83b4176e11c30d Mon Sep 17 00:00:00 2001 From: liam-m Date: Mon, 2 Feb 2015 23:09:11 +0000 Subject: [PATCH] Run pylon analysis on primes.py in Travis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ignore return code as it’s non-zero --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a68d28d..2f0223e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,10 @@ python: - "3.4" install: - pip install coverage + - pip install pylint script: - python test.py - coverage run test.py && coverage report -m --fail-under=100 --rcfile=coveragerc - python speed_test.py --all - - python speed_test.py --fermat 6 \ No newline at end of file + - python speed_test.py --fermat 6 + - pylint primes.py || true \ No newline at end of file