From a7d8a57e9087c1cac6e7673af0a00eaeb8bd33fb Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 23 Nov 2019 00:26:38 +0100 Subject: [PATCH] setup.py: "testing" extras_require: add pytest-xdist (#364) Tests require it currently, and it is not trivial to make it optional. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c21d9bea..98ec61c3 100644 --- a/setup.py +++ b/setup.py @@ -132,6 +132,7 @@ def run(self): 'hunter', 'process-tests==2.0.2', 'six', + 'pytest-xdist', 'virtualenv', ] },