Merge pull request #2331 from davidism/less-travis
Reduce test envs, add coverage reports, other test fixups
This commit is contained in:
commit
471c7f3220
5 changed files with 113 additions and 64 deletions
11
.coveragerc
Normal file
11
.coveragerc
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
[run]
|
||||||
|
branch = True
|
||||||
|
source =
|
||||||
|
flask
|
||||||
|
tests
|
||||||
|
|
||||||
|
[paths]
|
||||||
|
source =
|
||||||
|
flask
|
||||||
|
.tox/*/lib/python*/site-packages/flask
|
||||||
|
.tox/pypy/site-packages/flask
|
||||||
89
.travis.yml
89
.travis.yml
|
|
@ -1,52 +1,61 @@
|
||||||
sudo: false
|
sudo: false
|
||||||
language: python
|
language: python
|
||||||
|
|
||||||
python:
|
|
||||||
- "2.6"
|
|
||||||
- "2.7"
|
|
||||||
- "pypy"
|
|
||||||
- "3.3"
|
|
||||||
- "3.4"
|
|
||||||
- "3.5"
|
|
||||||
- "3.6"
|
|
||||||
|
|
||||||
env:
|
|
||||||
- REQUIREMENTS=lowest
|
|
||||||
- REQUIREMENTS=lowest-simplejson
|
|
||||||
- REQUIREMENTS=release
|
|
||||||
- REQUIREMENTS=release-simplejson
|
|
||||||
- REQUIREMENTS=devel
|
|
||||||
- REQUIREMENTS=devel-simplejson
|
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
exclude:
|
include:
|
||||||
# Python 3 support currently does not work with lowest requirements
|
- python: 3.6
|
||||||
- python: "3.3"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest
|
- python: 3.5
|
||||||
- python: "3.3"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest-simplejson
|
- python: 3.4
|
||||||
- python: "3.4"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest
|
- python: 3.3
|
||||||
- python: "3.4"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest-simplejson
|
- python: 2.7
|
||||||
- python: "3.5"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest
|
- python: 2.6
|
||||||
- python: "3.5"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest-simplejson
|
- python: pypy
|
||||||
- python: "3.6"
|
env: TOXENV=py-release,codecov
|
||||||
env: REQUIREMENTS=lowest
|
- python: nightly
|
||||||
- python: "3.6"
|
env: TOXENV=py-release
|
||||||
env: REQUIREMENTS=lowest-simplejson
|
- python: 3.6
|
||||||
|
env: TOXENV=docs-html
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py-release-simplejson,codecov
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=py-release-simplejson,codecov
|
||||||
|
- python: pypy
|
||||||
|
env: TOXENV=py-release-simplejson,codecov
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py-devel,codecov
|
||||||
|
- python: 3.3
|
||||||
|
env: TOXENV=py-devel,codecov
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=py-devel,codecov
|
||||||
|
- python: 2.6
|
||||||
|
env: TOXENV=py-devel,codecov
|
||||||
|
- python: pypy
|
||||||
|
env: TOXENV=py-devel,codecov
|
||||||
|
- python: 3.6
|
||||||
|
env: TOXENV=py-lowest,codecov
|
||||||
|
- python: 3.3
|
||||||
|
env: TOXENV=py-lowest,codecov
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=py-lowest,codecov
|
||||||
|
- python: 2.6
|
||||||
|
env: TOXENV=py-lowest,codecov
|
||||||
|
- python: pypy
|
||||||
|
env: TOXENV=py-lowest,codecov
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- tox -e py-$REQUIREMENTS
|
- tox
|
||||||
|
|
||||||
branches:
|
cache:
|
||||||
except:
|
- pip
|
||||||
- website
|
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,5 @@ universal = 1
|
||||||
license_file = LICENSE
|
license_file = LICENSE
|
||||||
|
|
||||||
[tool:pytest]
|
[tool:pytest]
|
||||||
norecursedirs = .* *.egg *.egg-info env* artwork docs
|
minversion = 3.0
|
||||||
|
testpaths = tests
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -71,7 +71,7 @@ setup(
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
platforms='any',
|
platforms='any',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Werkzeug>=0.7',
|
'Werkzeug>=0.9',
|
||||||
'Jinja2>=2.4',
|
'Jinja2>=2.4',
|
||||||
'itsdangerous>=0.21',
|
'itsdangerous>=0.21',
|
||||||
'click>=4.0',
|
'click>=4.0',
|
||||||
|
|
|
||||||
72
tox.ini
72
tox.ini
|
|
@ -1,37 +1,65 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = {py26,py27,pypy}-{lowest,release,devel}{,-simplejson}, {py33,py34,py35,py36}-{release,devel}{,-simplejson}
|
envlist =
|
||||||
|
py{36,35,34,33,27,26,py}-release
|
||||||
|
py{36,27,py}-release-simplejson
|
||||||
|
py{36,33,27,26,py}-devel
|
||||||
|
py{36,33,27,26,py}-lowest
|
||||||
|
docs-html
|
||||||
|
coverage-report
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
passenv = LANG
|
passenv = LANG
|
||||||
usedevelop=true
|
usedevelop = true
|
||||||
commands =
|
deps =
|
||||||
# We need to install those after Flask is installed.
|
pytest>=3
|
||||||
pip install -e examples/flaskr
|
coverage
|
||||||
pip install -e examples/minitwit
|
|
||||||
pip install -e examples/patterns/largerapp
|
|
||||||
pytest --cov=flask --cov-report html []
|
|
||||||
deps=
|
|
||||||
pytest
|
|
||||||
pytest-cov
|
|
||||||
greenlet
|
greenlet
|
||||||
|
blinker
|
||||||
|
|
||||||
lowest: Werkzeug==0.7
|
lowest: Werkzeug==0.9
|
||||||
lowest: Jinja2==2.4
|
lowest: Jinja2==2.4
|
||||||
lowest: itsdangerous==0.21
|
lowest: itsdangerous==0.21
|
||||||
lowest: Click==4.0
|
lowest: Click==4.0
|
||||||
lowest: blinker==1.0
|
|
||||||
|
|
||||||
release: blinker
|
devel: https://github.com/pallets/werkzeug/archive/master.tar.gz
|
||||||
|
devel: https://github.com/pallets/markupsafe/archive/master.tar.gz
|
||||||
devel: git+https://github.com/pallets/werkzeug.git
|
devel: https://github.com/pallets/jinja/archive/master.tar.gz
|
||||||
devel: git+https://github.com/pallets/markupsafe.git
|
devel: https://github.com/pallets/itsdangerous/archive/master.tar.gz
|
||||||
devel: git+https://github.com/pallets/jinja.git
|
devel: https://github.com/pallets/click/archive/master.tar.gz
|
||||||
devel: git+https://github.com/pallets/itsdangerous.git
|
|
||||||
devel: git+https://github.com/pallets/click.git
|
|
||||||
devel: git+https://github.com/jek/blinker.git
|
|
||||||
|
|
||||||
simplejson: simplejson
|
simplejson: simplejson
|
||||||
|
commands =
|
||||||
|
# the examples need to be installed to test successfully
|
||||||
|
pip install -e examples/flaskr -q
|
||||||
|
pip install -e examples/minitwit -q
|
||||||
|
pip install -e examples/patterns/largerapp -q
|
||||||
|
|
||||||
[testenv:docs]
|
# pytest-cov doesn't seem to play nice with -p
|
||||||
|
coverage run -p -m pytest
|
||||||
|
|
||||||
|
[testenv:docs-html]
|
||||||
|
deps =
|
||||||
|
sphinx
|
||||||
|
flask-sphinx-themes
|
||||||
|
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
||||||
|
|
||||||
|
[testenv:docs-linkcheck]
|
||||||
deps = sphinx
|
deps = sphinx
|
||||||
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
|
||||||
|
|
||||||
|
[testenv:coverage-report]
|
||||||
|
deps = coverage
|
||||||
|
skip_install = true
|
||||||
|
commands =
|
||||||
|
coverage combine
|
||||||
|
coverage report
|
||||||
|
coverage html
|
||||||
|
|
||||||
|
[testenv:codecov]
|
||||||
|
passenv = CI TRAVIS TRAVIS_*
|
||||||
|
deps = codecov
|
||||||
|
skip_install = true
|
||||||
|
commands =
|
||||||
|
coverage combine
|
||||||
|
coverage report
|
||||||
|
codecov
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue