mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
25 lines
416 B
YAML
25 lines
416 B
YAML
language: python
|
|
python:
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- 3.6
|
|
before_install:
|
|
- pip install coveralls
|
|
install:
|
|
- pip install -e .
|
|
- pip install -r tests/requirements.txt
|
|
- pip install Django==${DJANGO}
|
|
script: make test
|
|
env:
|
|
- DJANGO=1.9.13
|
|
- DJANGO=1.10.7
|
|
- DJANGO=1.11.1
|
|
matrix:
|
|
exclude:
|
|
- python: 3.6
|
|
env: DJANGO=1.9.13
|
|
- python: 3.6
|
|
env: DJANGO=1.10.7
|
|
after_success:
|
|
- coveralls
|