summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-03-23 17:57:20 -0400
committerTres Seaver <tseaver@palladion.com>2016-03-23 17:57:20 -0400
commit86912d971729d77ab0ed79617fbce7b0c536c255 (patch)
tree89e992e49857ac47932d927ab21e8c9f3eb3812f /tox.ini
parent1be18cd5ca667f735635ec0225c296b6cbc06b6b (diff)
downloadzope-security-86912d971729d77ab0ed79617fbce7b0c536c255.tar.gz
Drop support for Python 2.6 and 3.2.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 6f184d2..c57c86a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,8 +2,8 @@
envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
-# py26,py27,pypy,jython,py32,py33,coverage,docs
- py26,py27,py27-pure,pypy,py32,py33,py33-pure,py34,py35,coverage,docs
+# py27,pypy,jython,py33,coverage,docs
+ py27,py27-pure,pypy,py33,py33-pure,py34,py35,coverage,docs
[testenv]
deps =
@@ -31,13 +31,13 @@ setenv =
[testenv:coverage]
basepython =
- python2.6
+ python2.7
commands =
# The installed version messes up nose's test discovery / coverage reporting
# So, we uninstall that from the environment, and then install the editable
# version, before running nosetests.
pip uninstall -y zope.security
- python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python2.6/site-packages/zope/__init__.py')"
+ python -c "import shutil; shutil.copyfile('src/zope/__init__.py', '{envdir}/lib/python2.7/site-packages/zope/__init__.py')"
pip install -e .
nosetests --with-xunit --with-xcoverage
deps =