Use pylint-patcher rather than my forked version of Pylint

This commit is contained in:
sneakypete81 2013-09-07 13:59:55 +01:00
parent ba9ef81ac8
commit f2a9312b0f
2 changed files with 5 additions and 13 deletions

View file

@ -4,7 +4,6 @@ install:
# Install test dependencies
- pip install tox --use-mirrors
- pip install coveralls --use-mirrors
- .travis/install_pylint
script: tox
@ -14,8 +13,11 @@ after_success:
after_script:
# Install dependencies for Pylint
- pip install requests requests-oauthlib --use-mirrors
- pip install pylint-patcher --use-mirrors
- pip install requests --use-mirrors
- pip install requests-oauthlib --use-mirrors
# Run Pylint
# Uses pylint-patcher to allow exceptions to be stored in a patchfile
# (for information only, any errors don't affect the Travis result)
- pylint --use-ignore-patch=y trovebox
- pylint-patcher trovebox

View file

@ -1,10 +0,0 @@
# Until the --use-ignore-patch makes it into pylint upstream, we need to
# download and install from sneakypete81's pylint fork
wget https://bitbucket.org/sneakypete81/pylint/get/use_ignore_patch.zip
unzip use_ignore_patch.zip
cd sneakypete81-pylint-*
python setup.py install
cd ..
rm -r sneakypete81-pylint-*