Skip to content

Commit 22b507c

Browse files
committed
Added coveralls
1 parent f1efecc commit 22b507c

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ python:
55
# command to install dependencies
66
install:
77
- pip install -q -e . --use-mirrors
8+
- pip install coveralls
89
# command to run tests
9-
script: python manage.py test
10+
script:
11+
- coverage run --source=simple_import manage.py test
12+
after_success:
13+
coveralls
1014
sudo: false

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@ and user preferences in the database.
66

77
Project is now stable and feature complete. Of course it's always a good idea to test before deploying.
88

9-
[Support development on gittip](http://www.gittip.com/bufke)
10-
119
[![Build Status](https://travis-ci.org/burke-software/django-simple-import.png?branch=master)](https://travis-ci.org/burke-software/django-simple-import)
10+
[![Coverage Status](https://coveralls.io/repos/burke-software/django-simple-import/badge.svg?branch=master&service=github)](https://coveralls.io/github/burke-software/django-simple-import?branch=master)
1211

1312
![Alt text](https://raw.github.com/burke-software/django-simple-import/master/docs/start_import.png)
1413
![Alt text](https://raw.github.com/burke-software/django-simple-import/master/docs/match_columns.png)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name = "django-simple-import",
5-
version = "1.22",
5+
version = "1.23",
66
author = "David Burke",
77
author_email = "david@burkesoftware.com",
88
description = ("A Django import tool easy enough your users could use it"),

0 commit comments

Comments
 (0)