Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Merge pull request #21 from discogs/update-tests
Browse files Browse the repository at this point in the history
Update tests
  • Loading branch information
cburmeister committed Jul 31, 2013
2 parents bfdb1f9 + 652e4a1 commit 6f84b50
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: python
python:
- "2.6"
- "2.7"
install:
- pip install -r requirements.txt --use-mirrors
script:
- coverage run tests.py
after_success:
- coveralls
5 changes: 4 additions & 1 deletion README.mkd
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Discogs API Client

[![Build Status](https://travis-ci.org/discogs/discogs_client.png?branch=master)](https://travis-ci.org/discogs/discogs_client)
[![Coverage Status](https://coveralls.io/repos/discogs/discogs_client/badge.png)](https://coveralls.io/r/discogs/discogs_client)

This is the official Discogs API client for Python. You can use it to query the
Discogs music database for metadata on artists, releases, and more.

Expand Down Expand Up @@ -185,7 +188,7 @@ Get a list of `Label`s representing sublabels associated with this `Label`:
Get the `Label`'s parent label, if it exists:

>>> label.parent_label
...
<Label "Warp Records Limited">

### Possible `data` keys

Expand Down
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PyYAML==3.10
coverage==3.6
coveralls==0.2
docopt==0.6.1
requests==1.2.3
sh==1.08
File renamed without changes.

0 comments on commit 6f84b50

Please sign in to comment.