From 8a9613f89e1238ae9ac0b5a18d80384846285a08 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Mon, 14 Jan 2019 12:15:50 -0500 Subject: [PATCH] Revert "RF: Move pytest and pytest-xdist from general requirement into tests_required" --- nipype/info.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/nipype/info.py b/nipype/info.py index 5780b71e1d..c6503ac753 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -147,6 +147,8 @@ def get_nipype_gitversion(): 'neurdflib', 'click>=%s' % CLICK_MIN_VERSION, 'funcsigs', + 'pytest>=%s' % PYTEST_MIN_VERSION, + 'pytest-xdist', 'mock', 'pydotplus', 'pydot>=%s' % PYDOT_MIN_VERSION, @@ -157,14 +159,7 @@ def get_nipype_gitversion(): if sys.version_info <= (3, 4): REQUIRES.append('configparser') -TESTS_REQUIRES = [ - 'pytest>=%s' % PYTEST_MIN_VERSION, - 'pytest-xdist', - 'pytest-cov', - 'codecov', - 'pytest-env', - 'coverage<5' -] +TESTS_REQUIRES = ['pytest-cov', 'codecov', 'pytest-env', 'coverage<5'] EXTRA_REQUIRES = { 'doc': ['Sphinx>=1.4', 'numpydoc', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],