Add Travis CI configuration file.

This commit is contained in:
Vincent Driessen 2012-07-18 09:17:08 +02:00
parent 604fce99a1
commit b0a42f4e25
3 changed files with 18 additions and 0 deletions

12
.travis.yml Normal file
View File

@ -0,0 +1,12 @@
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
script:
- sh run_tests
#notifications:
# irc:
# channels: "irc.freenode.org#sentry"
# on_success: change
# on_failure: change

View File

@ -1,3 +1,5 @@
[![Build status](https://secure.travis-ci.org/nvie/rq.png?branch=master)](https://secure.travis-ci.org/nvie/rq)
RQ (_Redis Queue_) is a simple Python library for queueing jobs and processing RQ (_Redis Queue_) is a simple Python library for queueing jobs and processing
them in the background with workers. It is backed by Redis and it is designed them in the background with workers. It is backed by Redis and it is designed
to have a low barrier to entry. It should be integrated in your web stack to have a low barrier to entry. It should be integrated in your web stack

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
redis
times
logbook
argparse