25 lines
382 B
YAML
25 lines
382 B
YAML
language: python
|
|
dist: trusty
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
- 3.7
|
|
- nightly
|
|
matrix:
|
|
allow_failures:
|
|
- python: nightly
|
|
- python: 3.7
|
|
fast_finish: true
|
|
before_install:
|
|
- pip install --upgrade pip
|
|
install:
|
|
- pip install .[test]
|
|
- pip install .
|
|
script:
|
|
- pylint --rcfile .pylintrc -E rtv/
|
|
- coverage run -m py.test -v
|
|
after_success:
|
|
- coveralls
|