Created
July 6, 2015 13:48
-
-
Save michaelhelmick/43ec87e4b1643bcfb2b5 to your computer and use it in GitHub Desktop.
Exclude Env Variables from Travis CI Build Matrix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- 2.6 | |
- 2.7 | |
- 3.4 | |
env: | |
- DJANGO_VERSION=1.4.20 | |
- DJANGO_VERSION=1.5.12 | |
- DJANGO_VERSION=1.6.11 | |
- DJANGO_VERSION=1.7.8 | |
- DJANGO_VERSION=1.8.2 | |
matrix: | |
exclude: | |
- python: 2.6 | |
env: DJANGO_VERSION=1.7.8 | |
- python: 2.6 | |
env: DJANGO_VERSION=1.8.2 | |
- python: 3.4 | |
env: DJANGO_VERSION=1.4.20 | |
install: | |
- pip install -q Django==$DJANGO_VERSION | |
- pip install -r test_requirements.txt | |
script: coverage run --source='balancer' runtests.py | |
notifications: | |
email: false | |
after_success: | |
- coveralls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment