Browse Source

Tests with and without simplejson for every existing testenv (#1869)

pull/1882/head
James Farrington 9 years ago committed by David Lord
parent
commit
f034d2e271
  1. 9
      .travis.yml
  2. 5
      tox.ini

9
.travis.yml

@ -11,18 +11,27 @@ python:
env: env:
- REQUIREMENTS=lowest - REQUIREMENTS=lowest
- REQUIREMENTS=lowest-simplejson
- REQUIREMENTS=release - REQUIREMENTS=release
- REQUIREMENTS=release-simplejson
- REQUIREMENTS=devel - REQUIREMENTS=devel
- REQUIREMENTS=devel-simplejson
matrix: matrix:
exclude: exclude:
# Python 3 support currently does not work with lowest requirements # Python 3 support currently does not work with lowest requirements
- python: "3.3" - python: "3.3"
env: REQUIREMENTS=lowest env: REQUIREMENTS=lowest
- python: "3.3"
env: REQUIREMENTS=lowest-simplejson
- python: "3.4" - python: "3.4"
env: REQUIREMENTS=lowest env: REQUIREMENTS=lowest
- python: "3.4"
env: REQUIREMENTS=lowest-simplejson
- python: "3.5" - python: "3.5"
env: REQUIREMENTS=lowest env: REQUIREMENTS=lowest
- python: "3.5"
env: REQUIREMENTS=lowest-simplejson
install: install:

5
tox.ini

@ -1,5 +1,7 @@
[tox] [tox]
envlist = {py26,py27,pypy}-{lowest,release,devel}, {py33,py34,py35}-{release,devel} envlist = {py26,py27,pypy}-{lowest,release,devel}{,-simplejson}, {py33,py34,py35}-{release,devel}{,-simplejson}
[testenv] [testenv]
commands = commands =
@ -19,6 +21,7 @@ deps=
devel: git+https://github.com/pallets/jinja.git devel: git+https://github.com/pallets/jinja.git
devel: git+https://github.com/pallets/itsdangerous.git devel: git+https://github.com/pallets/itsdangerous.git
devel: git+https://github.com/jek/blinker.git devel: git+https://github.com/jek/blinker.git
simplejson: simplejson
[testenv:docs] [testenv:docs]
deps = sphinx deps = sphinx

Loading…
Cancel
Save