From 841f4e9e47ed4d7d14d8526a657600a6a67d7312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Wed, 22 Nov 2017 10:08:01 +0100 Subject: setup.py: Add pytest-xdist dependency This allows running tests in parallel: ./setup.py test --addopts "-n auto" --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 4d06c87f7..69a78a1d3 100755 --- a/setup.py +++ b/setup.py @@ -182,5 +182,7 @@ setup(name='BuildStream', 'pytest-env', 'pytest-pep8', 'pytest-cov', + # Provide option to run tests in parallel, less reliable + 'pytest-xdist', 'pytest >= 3.1.0'], zip_safe=False) -- cgit v1.2.1