summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini24
1 files changed, 4 insertions, 20 deletions
diff --git a/tox.ini b/tox.ini
index c703eb5..deab539 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
[tox]
-envlist = py{26,27,33,34,35,36,37}, pypy{2,3}, jython, doc, lint
+envlist = py{27,34,35,36,37}, pypy{2,3}, jython, doc, lint
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
toxworkdir = {env:TOXWORKDIR:.tox}
@@ -19,11 +19,9 @@ deps =
PyContracts==1.8.3
unittest-mixins==1.4
#-e/Users/ned/unittest_mixins
- py26: unittest2==1.1.0
- py{27,33,34,35,36}: gevent==1.2.2
- py26: eventlet==0.21.0
- py{27,33,34,35,36,37}: eventlet==0.22.0
- py{26,27,33,34,35,36,37}: greenlet==0.4.13
+ py{27,34,35,36}: gevent==1.2.2
+ py{27,34,35,36,37}: eventlet==0.22.0
+ py{27,34,35,36,37}: greenlet==0.4.13
# Windows can't update the pip version with pip running, so use Python
# to install things.
@@ -43,13 +41,6 @@ commands =
# Remove the C extension so that we can test the PyTracer
python igor.py zip_mods install_egg remove_extension
- # When running parallel tests, many processes might all try to import the
- # same modules at once. This should be safe, but especially on Python 3.3,
- # this caused a number of test failures trying to import usepkgs. To
- # prevent the race condition, pre-compile the tests/modules directory.
- py33: python -m compileall -q -f tests/modules
- py33: python -c "import time; time.sleep(1.1)"
-
# Test with the PyTracer
python igor.py test_with_tracer py {posargs}
@@ -57,13 +48,6 @@ commands =
python setup.py --quiet build_ext --inplace
python igor.py test_with_tracer c {posargs}
-[testenv:py26]
-basepython = python2.6
-install_command = python -m pip.__main__ install -U {opts} {packages}
-
-[testenv:py33]
-basepython = python3.3
-
[testenv:pypy]
# The "pypy" environment is for Travis. Probably can make Travis use one of
# the other environments...