use travis for testing
This commit is contained in:
parent
b06c63432a
commit
ef0c1d71b7
|
@ -0,0 +1,25 @@
|
|||
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
|
|
@ -1,4 +1,4 @@
|
|||
# TeamspeakStats [![Build Status](https://drone.io/github.com/Thor77/TeamspeakStats/status.png)](https://drone.io/github.com/Thor77/TeamspeakStats/latest) [![Coverage Status](https://coveralls.io/repos/Thor77/TeamspeakStats/badge.svg?branch=master&service=github)](https://coveralls.io/github/Thor77/TeamspeakStats?branch=master)
|
||||
# TeamspeakStats [![Build Status](https://travis-ci.org/Thor77/TeamspeakStats.svg?branch=master)](https://travis-ci.org/Thor77/TeamspeakStats) [![Coverage Status](https://coveralls.io/repos/Thor77/TeamspeakStats/badge.svg?branch=master&service=github)](https://coveralls.io/github/Thor77/TeamspeakStats?branch=master)
|
||||
A simple Teamspeak stat-generator - based on server-logs
|
||||
|
||||
# Installation
|
||||
|
|
Loading…
Reference in New Issue