travis: use different dists/sudo for different python versions
This commit is contained in:
parent
d893f7d39a
commit
2bf9370c68
38
.travis.yml
38
.travis.yml
|
@ -1,8 +1,3 @@
|
||||||
# we don't actually need sudo, but that kicks us onto GCE, which means
|
|
||||||
# "group: edge" will let us get Ubuntu 14.04 LTS (xenial)
|
|
||||||
sudo: true
|
|
||||||
group: edge
|
|
||||||
dist: xenial
|
|
||||||
language: python
|
language: python
|
||||||
cache: pip
|
cache: pip
|
||||||
before_cache:
|
before_cache:
|
||||||
|
@ -10,14 +5,6 @@ before_cache:
|
||||||
branches:
|
branches:
|
||||||
except:
|
except:
|
||||||
- /^WIP-.*$/
|
- /^WIP-.*$/
|
||||||
python:
|
|
||||||
- "2.7"
|
|
||||||
- "3.3"
|
|
||||||
- "3.4"
|
|
||||||
- "3.5"
|
|
||||||
- "3.6"
|
|
||||||
- "3.7"
|
|
||||||
- "nightly"
|
|
||||||
install:
|
install:
|
||||||
- pip install -U pip tox virtualenv codecov
|
- pip install -U pip tox virtualenv codecov
|
||||||
before_script:
|
before_script:
|
||||||
|
@ -30,6 +17,31 @@ script:
|
||||||
after_success:
|
after_success:
|
||||||
- codecov
|
- codecov
|
||||||
matrix:
|
matrix:
|
||||||
|
include:
|
||||||
|
- python: 2.7
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
|
- python: 3.3
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
|
- python: 3.4
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
|
- python: 3.5
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
|
- python: 3.6
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
|
- python: 3.7
|
||||||
|
dist: xenial
|
||||||
|
# we don't actually need sudo, but that kicks us onto GCE, which means
|
||||||
|
# "group: edge" will let us get Ubuntu 14.04 LTS (xenial)
|
||||||
|
#group: edge
|
||||||
|
sudo: true
|
||||||
|
- python: nightly
|
||||||
|
dist: trusty
|
||||||
|
sudo: false
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- python: "3.3"
|
- python: "3.3"
|
||||||
- python: "nightly"
|
- python: "nightly"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user