TeamspeakStats/.travis.yml

26 lines
427 B
YAML
Raw Normal View History

2016-05-08 13:55:40 -04:00
language: python
python:
- 2.7
- 3.5
matrix:
include:
- python: 2.7
install:
- pip install pyflakes
- pip install isort
script:
- pyflakes **/*.py
- isort -c **/*.py
install:
- pip install -r requirements.txt
- pip install -r testing_requirements.txt
- pip install coverage
script: nosetests --with-coverage
after_success:
- pip install coveralls
- coveralls