Adding more environments to Travis
This commit is contained in:
parent
1bbcc9fd04
commit
c2a3e9bb84
1 changed files with 22 additions and 2 deletions
24
.travis.yml
24
.travis.yml
|
@ -1,6 +1,26 @@
|
||||||
language: python
|
language: python
|
||||||
python:
|
|
||||||
- '2.7'
|
matrix:
|
||||||
|
include:
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
sudo: required
|
||||||
|
python: 3.2
|
||||||
|
include:
|
||||||
|
- os: linux
|
||||||
|
dist: trusty
|
||||||
|
sudo: required
|
||||||
|
python: 2.7
|
||||||
|
include:
|
||||||
|
- os: osx
|
||||||
|
osx_image: xcode7.2
|
||||||
|
sudo: required
|
||||||
|
python: 3.2
|
||||||
|
include:
|
||||||
|
- os: osx
|
||||||
|
osx_image: xcode7.2
|
||||||
|
sudo: required
|
||||||
|
python: 2.7
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- sudo apt-get update
|
- sudo apt-get update
|
||||||
|
|
Loading…
Reference in a new issue