From 568ce319ef097f1e909398f9a5ec890e4de91601 Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Tue, 1 Nov 2016 11:15:18 -0500 Subject: switch to 3.6-dev for py36 and update nightly to py37 on travis --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 8ceb142cb..884b78c68 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py27,py34,py35,py36,pypy, + py27,py34,py35,py36,py37,pypy, docs,pep8, {py2,py3}-cover,coverage, skip-missing-interpreters = True @@ -13,6 +13,7 @@ basepython = py34: python3.4 py35: python3.5 py36: python3.6 + py37: python3.7 pypy: pypy py2: python2.7 py3: python3.5 -- cgit v1.2.3 From d84bc45c582cb8398608efebe21ccea957cc583b Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 14 Nov 2016 10:40:53 -0500 Subject: Fix spelling of 'skip_missing_interpreters' option. See: http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 884b78c68..251e43406 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ envlist = py27,py34,py35,py36,py37,pypy, docs,pep8, {py2,py3}-cover,coverage, -skip-missing-interpreters = True +skip_missing_interpreters = True [testenv] # Most of these are defaults but if you specify any you can't fall back -- cgit v1.2.3 From c67be02ed80bb4f304914380287998c20c65f717 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Mon, 14 Nov 2016 10:42:17 -0500 Subject: Silence pip spew. --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 251e43406..d1df0f031 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ basepython = py3: python3.5 commands = - pip install pyramid[testing] + pip install -q pyramid[testing] nosetests --with-xunit --xunit-file=nosetests-{envname}.xml {posargs:} [testenv:py27-scaffolds] @@ -72,7 +72,7 @@ commands = # combination of versions of coverage and nosexcover that i can find. [testenv:py2-cover] commands = - pip install pyramid[testing] + pip install -q pyramid[testing] coverage run --source=pyramid {envbindir}/nosetests coverage xml -o coverage-py2.xml setenv = @@ -80,7 +80,7 @@ setenv = [testenv:py3-cover] commands = - pip install pyramid[testing] + pip install -q pyramid[testing] coverage run --source=pyramid {envbindir}/nosetests coverage xml -o coverage-py3.xml setenv = -- cgit v1.2.3 From 0844c664ad00fcbb6600231a012ad6384da15f5a Mon Sep 17 00:00:00 2001 From: Michael Merickel Date: Sat, 24 Dec 2016 14:23:47 -0600 Subject: require tests to pass on py36 on travis and appveyor --- tox.ini | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index d1df0f031..242decfc4 100644 --- a/tox.ini +++ b/tox.ini @@ -40,6 +40,12 @@ commands = python pyramid/scaffolds/tests.py deps = virtualenv +[testenv:py36-scaffolds] +basepython = python3.6 +commands = + python pyramid/scaffolds/tests.py +deps = virtualenv + [testenv:pypy-scaffolds] basepython = pypy commands = -- cgit v1.2.3