From 1c28b5a5d006b75993541c22ad7f5651273c8d5f Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 20 Jan 2020 19:48:40 +0100 Subject: [PATCH 1/2] setup.py: Add missing test depencendy ddt Signed-off-by: Sebastian Pipping --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 110441dca..21ab2d01d 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ install_requires = [ tests_require = [ + 'ddt >= 1.2.2, < 2', 'pytest < 6', ] From 9887121c2c0d21efca2d03ca810249f34ab4727a Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 20 Jan 2020 19:49:25 +0100 Subject: [PATCH 2/2] setup.py: Expose test dependencies as extra "tests" Signed-off-by: Sebastian Pipping --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 21ab2d01d..548e2bc93 100644 --- a/setup.py +++ b/setup.py @@ -60,6 +60,7 @@ extras_require = { 'ipaddress >= 1.0.16, < 2'], ':sys_platform == "win32"': ['colorama >= 0.4, < 1'], 'socks': ['PySocks >= 1.5.6, != 1.5.7, < 2'], + 'tests': tests_require, }