Try tox-travis and add Python 3.7

This commit is contained in:
Simon Conseil
2018-09-16 22:58:02 +02:00
parent b84c0c968c
commit 1a5bd4b359
3 changed files with 22 additions and 27 deletions

View File

@@ -2,16 +2,19 @@ language: python
cache: pip
sudo: false
env:
global:
- PILLOW="Pillow"
python:
- 3.6
- 3.5
matrix:
include:
- python: 3.5
env: PILLOW="Pillow==4.0.0"
- python: 3.7
dist: xenial
sudo: true
- python: 3.6
env: TOXENV=check
allow_failures:
- env: TOXENV=check
addons:
apt:
@@ -26,19 +29,16 @@ addons:
- libjpeg8-dev
- zlib1g-dev
install:
- pip install -U pip setuptools wheel
- pip install -q $PILLOW
- pip install pytest pytest-cov codecov feedgenerator zopfli brotli
- pip install .
install: pip install -U tox-travis
before_script:
ffmpeg --help
script: py.test -sv --cov sigal --cov-report term-missing tests/
script: tox
after_success:
codecov
- pip install codecov
- codecov
notifications:
irc: "chat.freenode.net#sigal"

View File

@@ -1,4 +1,3 @@
alabaster
blinker
boto
brotli
@@ -11,6 +10,4 @@ Pillow
pilkit
pytest
pytest-cov
Sphinx
twine
zopfli

20
tox.ini
View File

@@ -1,23 +1,21 @@
[tox]
envlist = py{35,36},report,check
envlist = py{35,36,37},check
skip_missing_interpreters = True
[travis]
python =
3.7: py37
3.6: py36
3.5: py35
[testenv]
commands = pytest --cov sigal --cov-report term-missing
deps =
-r {toxinidir}/requirements.txt
pytest
pytest-cov
[testenv:report]
basepython = python3.6
commands =
coverage combine
coverage report
usedevelop = true
deps = coverage
commands = pytest --cov sigal --cov-report term-missing tests/
[testenv:check]
basepython = python3.6
deps =
docutils
check-manifest