Skip to content

Commit

Permalink
Run pylon analysis on primes.py in Travis
Browse files Browse the repository at this point in the history
Ignore return code as it’s non-zero
  • Loading branch information
liam-m committed Feb 2, 2015
1 parent bd55d66 commit 6a72ec9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- python speed_test.py --fermat 6
- pylint primes.py || true

1 comment on commit 6a72ec9

@liam-m
Copy link
Owner Author

@liam-m liam-m commented on 6a72ec9 Feb 2, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pylint, autocorrect!

Please sign in to comment.