Skip to content
This repository has been archived by the owner on Aug 9, 2019. It is now read-only.

Commit

Permalink
[travis]
Browse files Browse the repository at this point in the history
+ Updated pyflakes with custom version that avoids warnings
+ Ignore line errors on pep8
  • Loading branch information
Felipe Martín committed Mar 15, 2013
1 parent cc4c94e commit 705beaa
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@ python:
- "2.6"
- "2.7"
- "3.2"
install: "pip install --use-mirrors pep8 pyflakes"
install:
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
before_script:
- "echo ----------------------- PEP8"
- "echo --- datCrawl"
- "pep8 datCrawl/"
- "pep8 --ignore=E501,E225 datCrawl/"
- "echo --- tests"
- "pep8 test/"
- "pep8 --ignore=E501,E225 test/"
- "echo ------------------- PYFLAKES"
- pyflakes datCrawl
- pyflakes -x W datCrawl

0 comments on commit 705beaa

Please sign in to comment.