diff options
| -rw-r--r-- | testing/tox.ini | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/testing/tox.ini b/testing/tox.ini index 246f63fa..83793cc7 100644 --- a/testing/tox.ini +++ b/testing/tox.ini @@ -27,3 +27,10 @@ install_command = pip install {opts} {packages}  changedir = ..  deps = pep8  commands = pep8 {posargs} client server common + +[testenv:parallel] +deps = +    {[testenv]deps} +    pytest-xdist +install_command = pip install {opts} {packages} +commands = py.test {posargs} -n 4 | 
