Skip to content

Commit

Permalink
Merge branch 'travis-ci' of https://github.com/rdegges/opencomparison
Browse files Browse the repository at this point in the history
…into rdegges-travis-ci
  • Loading branch information
pydanny committed May 12, 2012
2 parents ec2d7fc + 0a8ee4c commit e2390f3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .travis.yml
@@ -0,0 +1,8 @@
language: python
python:
- "2.6"
- "2.7"
install:
- pip install -r requirements/project.txt
script:
- python manage.py test --settings=settings.travis
7 changes: 6 additions & 1 deletion README.rst
Expand Up @@ -47,6 +47,11 @@ The Documentation

The documentation is hosted at http://opencomparison.rtfd.org

Test Status
-----------

[![Build Status](https://secure.travis-ci.org/audreyr/opencomparison.png?branch=master)](http://travis-ci.org/audreyr/opencomparison)

License
-------

Expand All @@ -57,4 +62,4 @@ Credits

For Django Dash 2010, @pydanny and @audreyr (the "Scared of Rabbits" team) created Django Packages and have been working on it since then, turning it into the OpenComparison framework.

They are joined by a host of core developers and contributors. See http://opencomparison.readthedocs.org/en/latest/contributors.html
They are joined by a host of core developers and contributors. See http://opencomparison.readthedocs.org/en/latest/contributors.html
19 changes: 19 additions & 0 deletions settings/travis.py
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
"""TravisCI settings which allow us to run our test suite on the TravisCI
continuous integration service.
"""


from settings.base import *


DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": ":memory:",
"USER": "",
"PASSWORD": "",
"HOST": "",
"PORT": "",
},
}

0 comments on commit e2390f3

Please sign in to comment.