Use pylint-patcher rather than my forked version of Pylint
This commit is contained in:
parent
ba9ef81ac8
commit
f2a9312b0f
2 changed files with 5 additions and 13 deletions
|
@ -4,7 +4,6 @@ install:
|
||||||
# Install test dependencies
|
# Install test dependencies
|
||||||
- pip install tox --use-mirrors
|
- pip install tox --use-mirrors
|
||||||
- pip install coveralls --use-mirrors
|
- pip install coveralls --use-mirrors
|
||||||
- .travis/install_pylint
|
|
||||||
|
|
||||||
script: tox
|
script: tox
|
||||||
|
|
||||||
|
@ -14,8 +13,11 @@ after_success:
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
# Install dependencies for Pylint
|
# 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
|
# 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)
|
# (for information only, any errors don't affect the Travis result)
|
||||||
- pylint --use-ignore-patch=y trovebox
|
- pylint-patcher trovebox
|
||||||
|
|
|
@ -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-*
|
|
Loading…
Add table
Add a link
Reference in a new issue