1
0
Fork 0
mirror of https://github.com/Thor77/TeamspeakStats.git synced 2025-07-21 22:38:43 -04:00
TeamspeakStats/.travis.yml
2016-05-09 20:09:16 +02:00

25 lines
434 B
YAML

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 pytest-cov
script: py.test --cov=tsstats tsstats/
after_success:
- pip install coveralls
- coveralls