third_party.pylibs.pylint.src/.travis.yml
Moises Lopez - https://www.vauxoo.com/ e14a722db9 Add compatibility with old versions of setuptools (#1107)
Environment markers can be used only in recent versions of
setuptools. Instead of relying on extras_require, we are falling back to
install_requires when we detect an incompatibility between the installed
setuptools version and what pylint expects.
2016-09-25 20:01:53 +03:00

45 lines
947 B
YAML

language: python
# 3.5-dev because of http://bugs.python.org/issue25131
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5-dev
env: TOXENV=py35
- python: pypy
env: TOXENV=pypy
- python: 3.5
env: TOXENV=pylint
before_install:
- python --version
- uname -a
- lsb_release -a
install:
- pip install tox coverage coveralls
- virtualenv --version
- easy_install --version
- pip --version
- tox --version
- coverage --version
script:
# Test install with current version of setuptools
- pip install .
# Run the tests with newest version of setuptools
- pip install -U setuptools
- tox -e coverage-erase,$TOXENV
after_success:
- tox -e coveralls
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
notifications:
email:
on_success: always
on_failure: always