diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-16 08:48:56 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-07-16 08:48:56 -0400 |
commit | 6c86dbf6e02f4bed6a03fc46a69dabf4b1f8731c (patch) | |
tree | c667c8624e59cdd5104b9a1f7f0d2c0ce2e4b501 | |
parent | a4e8460cfa86fe7e9c82b01ade8b352bb93b695d (diff) | |
download | python-coveragepy-git-6c86dbf6e02f4bed6a03fc46a69dabf4b1f8731c.tar.gz |
Mock broke 2.6 compatibility, so pin it for now.
-rw-r--r-- | tox.ini | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -22,10 +22,10 @@ commands = # Build the C extension and test with the CTracer {envpython} setup.py --quiet build_ext --inplace {envpython} igor.py test_with_tracer c {posargs} -passenv = * + deps = nose - mock + mock==1.0.1 PyContracts py26: unittest2 py26,py27: gevent @@ -36,6 +36,7 @@ setenv = pypy24,pypy26,pypy3_24: COVERAGE_NO_EXTENSION=no C extensions under PyPy usedevelop = True +passenv = * [testenv:pypy24] basepython = pypy2.4 |