TeamspeakStats/.travis.yml
Thor77 f68986117b Use flake8 instead of pyflakes
for additional pep8-checks
2017-02-19 17:14:49 +01:00

26 lines
454 B
YAML

language: python
python:
- 2.7
- 3.5
- 3.6
matrix:
include:
- python: 2.7
install:
- pip install flake8
- pip install isort
script:
- flake8 tsstats/**/*.py
- isort -c tsstats/**/*.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