Skip to content

Commit

Permalink
travis and coveralls integration (#2)
Browse files Browse the repository at this point in the history
* travis and coveralls integration

* fixed tests run command

* removed python 3.3 from the list of jobs
  • Loading branch information
renskiy committed Jul 18, 2016
1 parent 24eb732 commit 5954815
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: python

sudo: false

python:
- "2.7"
- "3.4"
- "3.5"
- "nightly"

install:
- pip install -r requirements.txt
- pip install coveralls

script:
coverage run --source=djangocache manage.py test tests

after_success:
coveralls

branches:
only:
- master
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# django-cache
Extended HTTP caching for Django

[![Build Status](https://travis-ci.org/renskiy/django-cache.svg?branch=master)](https://travis-ci.org/renskiy/django-cache)
[![Coverage Status](https://coveralls.io/repos/github/renskiy/django-cache/badge.svg?branch=master)](https://coveralls.io/github/renskiy/django-cache?branch=master)

0 comments on commit 5954815

Please sign in to comment.