mirror of
https://github.com/django-q2/django-q2.git
synced 2026-09-26 19:38:13 +08:00
25 lines
360 B
YAML
25 lines
360 B
YAML
language: python
|
|
|
|
services:
|
|
- redis-server
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
|
|
env:
|
|
- DJANGO=1.8.2
|
|
- DJANGO=1.7.8
|
|
|
|
install:
|
|
- pip install -q django==$DJANGO
|
|
- pip install -r requirements.txt
|
|
- pip install pytest-django pytz coveralls
|
|
- python setup.py install
|
|
|
|
script:
|
|
- coverage run --source=django_q setup.py test
|
|
|
|
after_success:
|
|
- coveralls
|