Skip to content

Remove setup.py tests and adapt docs to use tests.py #5434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 15, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove get tests requires
  • Loading branch information
jenshnielsen committed Nov 24, 2015
commit 782078773b042351f3b25c56a44ad4b9969f0110
12 changes: 0 additions & 12 deletions setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,12 +417,6 @@ def get_setup_requires(self):
"""
return []

def get_tests_require(self):
"""
Get a list of Python packages that we require for executing tests.
"""
return []

def _check_for_pkg_config(self, package, include_file, min_version=None,
version=None):
"""
Expand Down Expand Up @@ -710,12 +704,6 @@ def get_package_data(self):
'sphinxext/tests/tinypages/_static/*',
]}

def get_tests_require(self):
requires = ['nose>=%s' % self.nose_min_version, 'sphinx']
if not sys.version_info >= (3, 3):
requires += ['mock']
return requires


class Toolkits_Tests(Tests):
name = "toolkits_tests"
Expand Down