diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-23 10:24:47 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-11-23 10:24:47 -0500 |
commit | 38d59268b2ae83ec9ab948618c01a2d24944d5f3 (patch) | |
tree | de4b9303f3723471e01597c003623919c2f5121c | |
parent | efbd3d23cf8429a699ea7108c600ab97be9788e6 (diff) | |
download | python-coveragepy-git-38d59268b2ae83ec9ab948618c01a2d24944d5f3.tar.gz |
Use xdist to run tests faster
-rw-r--r-- | setup.cfg | 2 | ||||
-rw-r--r-- | tox.ini | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tool:pytest] -addopts = -q +addopts = -q -n3 [pep8] # E265 block comment should start with '# ' @@ -11,6 +11,7 @@ usedevelop = True deps = # https://requires.io/github/nedbat/coveragepy/requirements/ git+https://github.com/nedbat/pytest.git@bug2038#egg=pytest==0.0 + pytest-xdist==1.15.0 pip==8.1.2 mock==2.0.0 PyContracts==1.7.9 |