mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 03:41:05 -05:00
The build now tests for newer Python 3.x versions and PyPy. Also the build will now test itself against Django 1.7RC1 instead of the latest beta version.
45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "3.2"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "pypy"
|
|
env:
|
|
- DJANGO=django==1.3
|
|
- DJANGO=django==1.4
|
|
- DJANGO=django==1.5
|
|
- DJANGO=django==1.6
|
|
- DJANGO=https://www.djangoproject.com/download/1.7c1/tarball/
|
|
matrix:
|
|
exclude:
|
|
# Django < 1.5 not supported on python 3
|
|
- python: "3.2"
|
|
env: DJANGO=django==1.3
|
|
- python: "3.2"
|
|
env: DJANGO=django==1.4
|
|
- python: "3.3"
|
|
env: DJANGO=django==1.3
|
|
- python: "3.3"
|
|
env: DJANGO=django==1.4
|
|
- python: "3.4"
|
|
env: DJANGO=django==1.3
|
|
- python: "3.4"
|
|
env: DJANGO=django==1.4
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.3
|
|
- python: "pypy"
|
|
env: DJANGO=django==1.4
|
|
# Django >= 1.5 strongly recommends python 2.7 or later (so skip 2.6)
|
|
- python: "2.6"
|
|
env: DJANGO=django==1.5
|
|
- python: "2.6"
|
|
env: DJANGO=django==1.6
|
|
- python: "2.6"
|
|
env: DJANGO=https://www.djangoproject.com/download/1.7c1/tarball/
|
|
install:
|
|
- pip install -q $DJANGO
|
|
- pip install .
|
|
script: python -Wall setup.py test
|