From 8c0e6e52098da8c9d214b9ed9d2e9cfb17d7d621 Mon Sep 17 00:00:00 2001 From: Dorota Jarecka Date: Wed, 25 Jul 2018 07:36:41 -0400 Subject: [PATCH] moving pytest-xdist from TESTS_REQUIRES to REQUIRES --- nipype/info.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nipype/info.py b/nipype/info.py index a371b70e2e..6b60da6603 100644 --- a/nipype/info.py +++ b/nipype/info.py @@ -143,6 +143,7 @@ def get_nipype_gitversion(): 'click>=%s' % CLICK_MIN_VERSION, 'funcsigs', 'pytest>=%s' % PYTEST_MIN_VERSION, + 'pytest-xdist', 'mock', 'pydotplus', 'pydot>=%s' % PYDOT_MIN_VERSION, @@ -153,7 +154,7 @@ def get_nipype_gitversion(): if sys.version_info <= (3, 4): REQUIRES.append('configparser') -TESTS_REQUIRES = ['pytest-cov', 'codecov', 'pytest-xdist', 'pytest-env'] +TESTS_REQUIRES = ['pytest-cov', 'codecov', 'pytest-env'] EXTRA_REQUIRES = { 'doc': ['Sphinx>=1.4', 'numpydoc', 'matplotlib', 'pydotplus', 'pydot>=1.2.3'],