mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-26 14:26:56 -05:00
To conserve our ESP test accounts' send quotas, don't run the live API integration tests 13 times in every Travis run. Instead, just run them twice, on a representative set of Python/Django combinations: * Once on Python 2.7 (currently with Django 1.8) * Once on Python 3.x (currently 3.5 with Django 1.9) (Prep for running weekly tests on Travis cron.) The *non*-integration tests still run on all combos. * Introduce RUN_LIVE_TESTS environment var to control whether live API integration test cases should run. Default True, except in Travis-CI runs default False. * Enable RUN_LIVE_TESTS in .travis.yml matrix for the Python/Django combos listed above.
38 lines
1.6 KiB
YAML
38 lines
1.6 KiB
YAML
sudo: false
|
|
language: python
|
|
matrix:
|
|
include:
|
|
# Anymail supports the same python versions as Django, excluding Python 3.2, but adding pypy.
|
|
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
|
|
|
|
# Live API integration tests are only run on a few, representative Python/Django version
|
|
# cominbations, to avoid rapidly consuming the testing accounts' entire send allotments.
|
|
|
|
# Django 1.8: Python 2.7, 3.2 (until the end of 2016), 3.3, 3.4, 3.5
|
|
- { env: DJANGO=django==1.8 RUN_LIVE_TESTS=true, python: 2.7 }
|
|
- { env: DJANGO=django==1.8, python: 3.3 }
|
|
- { env: DJANGO=django==1.8, python: 3.4 }
|
|
- { env: DJANGO=django==1.8, python: 3.5 }
|
|
- { env: DJANGO=django==1.8, python: pypy }
|
|
# Django 1.9: Python 2.7, 3.4, 3.5
|
|
- { env: DJANGO=django==1.9, python: 2.7 }
|
|
- { env: DJANGO=django==1.9, python: 3.4 }
|
|
- { env: DJANGO=django==1.9 RUN_LIVE_TESTS=true, python: 3.5 }
|
|
- { env: DJANGO=django==1.9, python: pypy }
|
|
# Django 1.10 (prerelease): Python 2.7, 3.4, 3.5
|
|
- { env: DJANGO="--pre django", python: 2.7 }
|
|
- { env: DJANGO="--pre django", python: 3.4 }
|
|
- { env: DJANGO="--pre django", python: 3.5 }
|
|
- { env: DJANGO="--pre django", python: pypy }
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
install:
|
|
- pip install --upgrade setuptools pip
|
|
- pip install $DJANGO
|
|
# For now, install all ESPs and test at once
|
|
# (in future, might want to matrix ESPs to test cross-dependencies)
|
|
- pip install .[mailgun,mandrill,postmark,sendgrid,sparkpost]
|
|
- pip list
|
|
script: python setup.py test
|