18 lines
383 B
YAML
18 lines
383 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
before_install:
|
|
- pip install coveralls pytest coverage mock pylint vcrpy
|
|
install:
|
|
- pip install .
|
|
script:
|
|
# https://github.com/PyCQA/pylint/issues/1113
|
|
- if [[ $TRAVIS_PYTHON_VERSION != 3.6 ]]; then pylint --rcfile .pylintrc -E rtv/; fi
|
|
- coverage run -m py.test -v
|
|
after_success:
|
|
- coveralls
|