Browse Source

Decrease the number of Travis build and use latest version of Pillow

pull/230/head
Simon Conseil 9 years ago
parent
commit
7b5a78e205
  1. 11
      .travis.yml

11
.travis.yml

@ -2,18 +2,15 @@ language: python
cache: pip cache: pip
env: env:
global: global:
- PILLOW_VERSION=3.2.0 - PILLOW="Pillow"
matrix: matrix:
include: include:
- python: 2.7 - python: 2.7
env: PILLOW_VERSION=2.9.0
- python: 2.7
env: PILLOW_VERSION=3.0.0
- python: 2.7
- python: 3.3
- python: 3.4 - python: 3.4
env: PILLOW="Pillow==2.9.0"
- python: 3.5 - python: 3.5
env: PILLOW="Pillow==3.0.0"
- python: 3.6 - python: 3.6
@ -25,7 +22,7 @@ before_install:
- sudo locale-gen fr_FR.UTF-8 - sudo locale-gen fr_FR.UTF-8
- ffmpeg -version - ffmpeg -version
install: install:
- pip install -q Pillow==$PILLOW_VERSION - pip install -q $PILLOW
- pip install pytest pytest-cov coveralls - pip install pytest pytest-cov coveralls
- pip install . - pip install .
script: py.test -sv --cov sigal --cov-report term-missing tests/ script: py.test -sv --cov sigal --cov-report term-missing tests/

Loading…
Cancel
Save