Skip to content
This repository has been archived by the owner on Mar 10, 2018. It is now read-only.

Commit

Permalink
Added support for travis-ci.org
Browse files Browse the repository at this point in the history
  • Loading branch information
joninvski committed Jun 7, 2013
1 parent 36107e0 commit 11ed398
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: python

env:
global:
- DJANGO=1.5.1
- PIP_USE_MIRRORS=true
- DJANGO_SETTINGS_MODULE=dcid.settings

services: mysql

before_script:
- mysql -e 'create database dcid_db;'

python:
- "2.7"

install:
- pip install -q Django==$DJANGO MySQL-python

script:
- python manage.py syncdb --noinput
- python manage.py test

0 comments on commit 11ed398

Please sign in to comment.