mirror of
https://github.com/spl0k/supysonic.git
synced 2024-12-21 16:36:18 +00:00
Updates for Travis and codecov
This commit is contained in:
parent
5d969e4c71
commit
acb8d159f7
3
.coveragerc
Normal file
3
.coveragerc
Normal file
@ -0,0 +1,3 @@
|
||||
[run]
|
||||
source = supysonic
|
||||
|
16
.travis.yml
16
.travis.yml
@ -1,5 +1,15 @@
|
||||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
install: "python setup.py install"
|
||||
script: "python setup.py test"
|
||||
- 2.7
|
||||
- 3.5
|
||||
- 3.6
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
- pip install lxml coverage codecov
|
||||
script: coverage setup.py test
|
||||
after_script: codecov
|
||||
matrix:
|
||||
allow_failures:
|
||||
- python: 3.5
|
||||
- python: 3.6
|
||||
|
||||
|
@ -2,6 +2,9 @@
|
||||
|
||||
Supysonic is a Python implementation of the [Subsonic][] server API.
|
||||
|
||||
[![Build Status](https://travis-ci.org/spl0k/supysonic.svg?branch=master)](https://travis-ci.org/spl0k/supysonic)
|
||||
[![codecov](https://codecov.io/gh/spl0k/supysonic/branch/master/graph/badge.svg)](https://codecov.io/gh/spl0k/supysonic)
|
||||
|
||||
Current supported features are:
|
||||
* browsing (by folders or tags)
|
||||
* streaming of various audio file formats
|
||||
|
Loading…
Reference in New Issue
Block a user