23 lines
585 B
YAML
23 lines
585 B
YAML
language: python
|
|
|
|
install:
|
|
# Install test dependencies
|
|
- pip install tox --use-mirrors
|
|
- pip install coveralls --use-mirrors
|
|
|
|
script: tox
|
|
|
|
after_success:
|
|
# Send coverage results to coveralls.io
|
|
- coveralls
|
|
|
|
after_script:
|
|
# Install dependencies for Pylint
|
|
- 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-patcher trovebox
|