Skip to content

Commit 7820787

Browse files
committed
Remove get tests requires
1 parent c52ef28 commit 7820787

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

setupext.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -417,12 +417,6 @@ def get_setup_requires(self):
417417
"""
418418
return []
419419

420-
def get_tests_require(self):
421-
"""
422-
Get a list of Python packages that we require for executing tests.
423-
"""
424-
return []
425-
426420
def _check_for_pkg_config(self, package, include_file, min_version=None,
427421
version=None):
428422
"""
@@ -710,12 +704,6 @@ def get_package_data(self):
710704
'sphinxext/tests/tinypages/_static/*',
711705
]}
712706

713-
def get_tests_require(self):
714-
requires = ['nose>=%s' % self.nose_min_version, 'sphinx']
715-
if not sys.version_info >= (3, 3):
716-
requires += ['mock']
717-
return requires
718-
719707

720708
class Toolkits_Tests(Tests):
721709
name = "toolkits_tests"

0 commit comments

Comments
 (0)