From dbed85c568d86dbe0c2fcb8f00fa268163bd840f Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 27 Nov 2019 18:00:09 +0800 Subject: [PATCH] setup.py: move test related stuff to optional deps all of them are for testing teuthology itself. Signed-off-by: Kefu Chai --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 018faa283f..75cee14176 100644 --- a/setup.py +++ b/setup.py @@ -48,16 +48,13 @@ setup( 'Topic :: System :: Distributed Computing', 'Topic :: System :: Filesystems', ], - install_requires=['pip-tools', - 'tox', - 'gevent', + install_requires=['gevent', 'PyYAML', 'argparse >= 1.2.1', 'boto >= 2.0b4', 'configobj', 'six >= 1.9', # python-openstackclient won't work properly with less 'pexpect', - 'pytest', # for tox.ini 'nose', # for qa/tasks/rgw_multisite_tests.py', 'docopt', 'psutil >= 2.1.0', @@ -94,6 +91,11 @@ setup( 'python-neutronclient', 'raven', 'requests != 2.13.0', + ], + 'test': [ + 'tox', + 'pip-tools', + 'pytest', # for tox.ini ] }, -- 2.39.5