mirror of https://github.com/rq/rq.git
Add Travis CI configuration file.
This commit is contained in:
parent
604fce99a1
commit
b0a42f4e25
|
@ -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
|
|
@ -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
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
redis
|
||||||
|
times
|
||||||
|
logbook
|
||||||
|
argparse
|
Loading…
Reference in New Issue