17 lines
327 B
YAML
17 lines
327 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
before_install:
|
|
- pip install coveralls pytest coverage mock pylint
|
|
- pip install git+https://github.com/kevin1024/vcrpy.git
|
|
install:
|
|
- pip install .
|
|
script:
|
|
- pylint --rcfile .pylintrc -E rtv/
|
|
- coverage run -m py.test -v
|
|
after_success:
|
|
- coveralls
|