16 lines
276 B
YAML
16 lines
276 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
env:
|
|
- DJANGO_VERSION=1.4
|
|
- DJANGO_VERSION=1.5
|
|
|
|
install:
|
|
- pip install -r requirements.txt --use-mirrors
|
|
- pip install -q Django==$DJANGO_VERSION --use-mirrors
|
|
- pip install coverage
|
|
|
|
script: coverage run quicktest.py jsignature
|