Skip to content
Snippets Groups Projects
Commit 260cb49b authored by Marc Abramowitz's avatar Marc Abramowitz
Browse files

.travis.yml: Bring over changes from 1.0-alpha branch

These are the changes that @sigmavirus24 did to `.travis.yml` on the
`1.0-alpha` branch in sigmavirus24#287
parent 8d0b6a36
No related branches found
No related tags found
No related merge requests found
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
# command to run tests, e.g. python setup.py test
before_script:
- pip install -r dev-requirements.txt
- pip install tox
- pip install -U requests"$REQUESTS_VERSION"
 
# test script
script: make travis
script: tox -e ${TOX_ENV}
notifications:
on_success: change
on_failure: always
on_success: change
on_failure: always
 
env:
global:
- TRAVIS_GH3="True"
matrix:
- REQUESTS_VERSION="==2.0.1"
- REQUESTS_VERSION="" # Latest
- TOX_ENV=py26 REQUESTS_VERSION="==2.0.1"
- TOX_ENV=py27 REQUESTS_VERSION="==2.0.1"
- TOX_ENV=py32 REQUESTS_VERSION="==2.0.1"
- TOX_ENV=py33 REQUESTS_VERSION="==2.0.1"
- TOX_ENV=py34 REQUESTS_VERSION="==2.0.1"
- TOX_ENV=pypy REQUESTS_VERSION="==2.0.1"
- TOX_ENV=py26 REQUESTS_VERSION=""
- TOX_ENV=py27 REQUESTS_VERSION=""
- TOX_ENV=py32 REQUESTS_VERSION=""
- TOX_ENV=py33 REQUESTS_VERSION=""
- TOX_ENV=py34 REQUESTS_VERSION=""
- TOX_ENV=pypy REQUESTS_VERSION=""
- TOX_ENV=py27-flake8
- TOX_ENV=py34-flake8
matrix:
allow_failures:
- env: TOX_ENV=py27-flake8
- env: TOX_ENV=py34-flake8
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment