mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-23 13:11:04 -05:00
* Shrink the Travis test matrix * Remove a lot of backported test code * Update requirements in setup.py * Update docs Closes #79
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
language: python
|
|
matrix:
|
|
include:
|
|
# Django 1.4: Python 2.6--2.7 (but we don't support 2.6)
|
|
- python: "2.7"
|
|
env: DJANGO=django==1.4
|
|
# Django 1.5: Python 2.7, pypy
|
|
- python: "2.7"
|
|
env: DJANGO=django==1.5
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.5
|
|
# Django 1.6: Python 2.7--3.3, pypy
|
|
- python: "2.7"
|
|
env: DJANGO=django==1.6
|
|
- python: "3.3"
|
|
env: DJANGO=django==1.6
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.6
|
|
# Django 1.7: Python 2.7--3.4, pypy
|
|
- python: "2.7"
|
|
env: DJANGO=django==1.7
|
|
- python: "3.3"
|
|
env: DJANGO=django==1.7
|
|
- python: "3.4"
|
|
env: DJANGO=django==1.7
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.7
|
|
# Django 1.8: "Python 2.7 or above"
|
|
- python: "2.7"
|
|
env: DJANGO=django==1.8
|
|
- python: "3.4"
|
|
env: DJANGO=django==1.8
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.8
|
|
install:
|
|
- pip install --upgrade setuptools pip
|
|
- pip install -q $DJANGO
|
|
- pip install .
|
|
script: python -Wall setup.py test
|