mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-04-25 23:05:31 -04:00
25 lines
459 B
YAML
25 lines
459 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.7
|
|
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements-dev.txt
|
|
- pip install pylama
|
|
script:
|
|
- pylama tsstats
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements-dev.txt
|
|
- pip install pytest-cov
|
|
|
|
script: py.test --cov=tsstats tsstats/
|
|
|
|
after_success:
|
|
- pip install coveralls
|
|
- coveralls
|