Skip to content

Commit f3eef2c

Browse files
committed
Added config for Travis CI, and adapted README.md
Signed-off-by: Stefan Marr <git@stefan-marr.de>
1 parent 7af6be2 commit f3eef2c

2 files changed

Lines changed: 30 additions & 0 deletions

File tree

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
language: python
2+
python:
3+
- "2.5"
4+
- "2.6"
5+
- "2.7"
6+
- "3.2"
7+
- "3.3"
8+
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
9+
# maintainers to fix their pypy-dev package.
10+
- "pypy"
11+
12+
env:
13+
- DJANGO_VERSION=1.4.4
14+
- DJANGO_VERSION=1.5.1
15+
- DJANGO_VERSION=1.6
16+
17+
# command to install dependencies
18+
install:
19+
- pip install -q Django==$DJANGO_VERSION
20+
- python setup.py install
21+
22+
# command to run tests
23+
script:
24+
- python setup.py test
25+
- cd sample_project
26+
- python manage.py test

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Known to be used by [PyPy](http://speed.pypy.org), [Twisted](http://speed.twiste
66

77
For an overview of some application concepts see the [wiki page](https://github.com/tobami/codespeed/wiki/Overview)
88

9+
# Build Status
10+
11+
The current build status on Travis CI is: [![Build Status](https://travis-ci.org/tobami/codespeed.png?branch=master)](https://travis-ci.org/tobami/codespeed)
12+
913
# Requirements
1014

1115
You will need Python 2.6+ and Django 1.3+ with South isodate and Tastypie.

0 commit comments

Comments
 (0)